initial commit
15 files changed
+100
-23
c06b00e3
→
2cfcd420
modified Cargo.lock
@@ -673,8 +673,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| - | |
| + | |
|
|
|
|
|
@@ -685,8 +684,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| - | |
| + | |
|
|
|
|
|
@@ -696,8 +694,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| - | |
| + | |
|
|
|
|
|
@@ -2292,8 +2289,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| - | |
| + | |
|
|
|
|
|
@@ -2330,7 +2326,7 @@ version = "0.50.3"
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -3798,8 +3794,7 @@ dependencies = [
|
|
|
|
|
|
| - | |
| - | |
| + | |
|
|
|
|
|
modified Cargo.toml
@@ -96,3 +96,7 @@ clippy.must_use_candidate = "deny"
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
modified crates/radicle-cli/src/terminal/format.rs
@@ -46,6 +46,7 @@ pub fn addr_compact(address: &Address) -> Paint<String> {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-node/Cargo.toml
@@ -21,7 +21,7 @@ bytes = { workspace = true }
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
modified crates/radicle-node/src/wire.rs
@@ -1113,6 +1113,28 @@ pub fn dial<G: Ecdh<Pk = NodeId>>(
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-protocol/Cargo.toml
@@ -15,7 +15,7 @@ test = ["radicle/test", "radicle-crypto/test", "radicle-crypto/cyphernet", "qche
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -35,4 +35,4 @@ paste = "1.0.15"
|
|
|
|
|
|
| - | |
| + | |
|
modified crates/radicle-protocol/src/service.rs
@@ -2629,6 +2629,7 @@ where
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/wire.rs
@@ -15,7 +15,7 @@ use std::string::FromUtf8Error;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -60,6 +60,8 @@ pub enum Invalid {
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -263,6 +265,12 @@ impl Encode for cyphernet::addr::tor::OnionAddrV3 {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -545,6 +553,12 @@ impl Decode for tor::OnionAddrV3 {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/wire/message.rs
@@ -2,7 +2,7 @@ use std::{mem, net};
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -80,6 +80,7 @@ pub enum AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -95,6 +96,7 @@ impl From<&Address> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -109,6 +111,7 @@ impl TryFrom<u8> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -360,6 +363,10 @@ impl wire::Encode for Address {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -398,6 +405,11 @@ impl wire::Decode for Address {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/Cargo.toml
@@ -32,7 +32,7 @@ bytesize = { version = "2", features = ["serde"] }
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -74,4 +74,4 @@ qcheck-macros = { workspace = true }
|
|
|
|
|
|
| - | |
| + | |
|
modified crates/radicle/src/node.rs
@@ -428,7 +428,7 @@ impl TryFrom<&sqlite::Value> for Alias {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -439,6 +439,7 @@ pub struct Address(
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -484,6 +485,14 @@ impl Address {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle/src/node/address.rs
@@ -202,6 +202,7 @@ pub enum AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -217,6 +218,7 @@ impl From<&Address> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -231,6 +233,7 @@ impl TryFrom<u8> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/node/address/store.rs
@@ -536,6 +536,7 @@ impl TryFrom<&sql::Value> for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -550,6 +551,7 @@ impl sql::BindableWithIndex for AddressType {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/node/config.rs
@@ -19,7 +19,7 @@ pub type ProtocolVersion = u8;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -44,6 +44,10 @@ pub mod seeds {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -61,6 +65,10 @@ pub mod seeds {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -270,7 +278,7 @@ pub struct RateLimits {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -282,6 +290,7 @@ pub struct ConnectAddress(
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -430,6 +439,9 @@ pub struct Config {
|
|
|
|
|
|
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -479,6 +491,7 @@ impl Config {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/test/arbitrary.rs
@@ -6,7 +6,7 @@ use std::{iter, net};
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -296,10 +296,11 @@ impl Arbitrary for Address {
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| + | |
|
|
|
|
|