modified crates/radicle-cli/Cargo.toml
@@ -14,7 +14,8 @@ name = "rad"
|
|
|
|
|
|
| - | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-cli/src/terminal/format.rs
@@ -47,6 +47,11 @@ pub fn addr_compact(address: &Address) -> Paint<String> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-node/Cargo.toml
@@ -10,7 +10,8 @@ build = "build.rs"
|
|
|
|
|
|
| - | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-node/src/wire.rs
@@ -19,7 +19,7 @@ use radicle::node::device::Device;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -1084,6 +1084,30 @@ pub fn dial<G: Ecdh<Pk = NodeId>>(
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -1094,27 +1118,13 @@ pub fn dial<G: Ecdh<Pk = NodeId>>(
|
|
|
|
|
|
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-protocol/Cargo.toml
@@ -9,6 +9,7 @@ edition.workspace = true
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/service.rs
@@ -2630,6 +2630,8 @@ where
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/wire.rs
@@ -62,6 +62,9 @@ pub enum Invalid {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -266,6 +269,13 @@ impl Encode for cyphernet::addr::tor::OnionAddrV3 {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -549,6 +559,16 @@ impl Decode for tor::OnionAddrV3 {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/wire/message.rs
@@ -83,6 +83,8 @@ pub enum AddressType {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -99,6 +101,8 @@ impl From<&Address> for AddressType {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -114,6 +118,8 @@ impl TryFrom<u8> for AddressType {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -366,6 +372,11 @@ impl wire::Encode for Address {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -405,6 +416,12 @@ impl wire::Decode for Address {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/Cargo.toml
@@ -11,6 +11,7 @@ rust-version.workspace = true
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/node/address.rs
@@ -203,6 +203,8 @@ pub enum AddressType {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -219,6 +221,8 @@ impl From<&Address> for AddressType {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -234,6 +238,8 @@ impl TryFrom<u8> for AddressType {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node/address/store.rs
@@ -537,6 +537,8 @@ impl TryFrom<&sql::Value> for AddressType {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -552,6 +554,8 @@ impl sql::BindableWithIndex for AddressType {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node/config.rs
@@ -355,7 +355,7 @@ pub enum Relay {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -436,6 +436,10 @@ pub struct Config {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -486,6 +490,8 @@ impl Config {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/test/arbitrary.rs
@@ -301,6 +301,10 @@ impl Arbitrary for Address {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|