modified crates/radicle-cli/Cargo.toml
@@ -13,6 +13,10 @@ rust-version.workspace = true
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/terminal/format.rs
@@ -37,6 +37,7 @@ pub fn addr_compact(address: &Address) -> Paint<String> {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-node/Cargo.toml
@@ -10,9 +10,10 @@ build = "build.rs"
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
| + | |
|
|
|
|
|
@@ -21,7 +22,7 @@ bytes = { workspace = true }
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified crates/radicle-node/src/wire.rs
@@ -19,6 +19,7 @@ use radicle::node::device::Device;
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -1092,6 +1093,7 @@ pub fn dial<G: Ecdh<Pk = NodeId>>(
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-protocol/Cargo.toml
@@ -10,12 +10,13 @@ rust-version.workspace = true
|
|
|
|
|
|
| + | |
|
|
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/service.rs
@@ -2575,6 +2575,7 @@ where
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/wire.rs
@@ -15,6 +15,7 @@ use std::string::FromUtf8Error;
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -58,6 +59,7 @@ pub enum Invalid {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -257,6 +259,7 @@ impl Encode for Refs {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -536,6 +539,7 @@ impl Decode for node::Features {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/wire/message.rs
@@ -2,7 +2,9 @@ use std::{mem, net};
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -79,6 +81,7 @@ pub enum AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -94,6 +97,7 @@ impl From<&Address> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -108,6 +112,7 @@ impl TryFrom<u8> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -356,6 +361,7 @@ impl wire::Encode for Address {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -393,6 +399,7 @@ impl wire::Decode for Address {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/Cargo.toml
@@ -24,6 +24,7 @@ schemars = [
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -32,7 +33,7 @@ bytesize = { version = "2", features = ["serde"] }
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node.rs
@@ -477,6 +477,7 @@ impl Address {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/node/address.rs
@@ -201,6 +201,7 @@ pub enum AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -216,6 +217,7 @@ impl From<&Address> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -230,6 +232,7 @@ impl TryFrom<u8> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/node/address/store.rs
@@ -535,6 +535,7 @@ impl TryFrom<&sql::Value> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -549,6 +550,7 @@ impl sql::BindableWithIndex for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/node/config.rs
@@ -19,7 +19,9 @@ pub type ProtocolVersion = u8;
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -38,6 +40,7 @@ pub mod seeds {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -55,6 +58,7 @@ pub mod seeds {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -351,6 +355,7 @@ pub enum Relay {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -428,6 +433,7 @@ pub struct Config {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -478,6 +484,7 @@ impl Config {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/test/arbitrary.rs
@@ -6,8 +6,8 @@ use std::{iter, net};
|
|
|
|
|
|
| - | |
| - | |
| + | |
| + | |
|
|
|
|
|
@@ -293,6 +293,7 @@ impl Arbitrary for Address {
|
|
|
|
|
|
| + | |
|
|
|
|
|