Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 30 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ path = "src/bin/ant-devnet/main.rs"
# Until then, the git pin tracks the matching saorsa-core lineage
# (the rc-2026.4.2 branch) so Cargo can unify the wire types here
# with ant-protocol's re-exports.
ant-protocol = "2.0.3"
ant-protocol = { git = "https://github.com/WithAutonomi/ant-protocol", branch = "fix/stability-improvements" }

# Core (provides EVERYTHING: networking, DHT, security, trust, storage)
saorsa-core = "0.24.2"
saorsa-core = { git = "https://github.com/saorsa-labs/saorsa-core", branch = "fix/stability-improvements" }
Comment on lines +36 to +39
Comment on lines +36 to +39
saorsa-pqc = "0.5"

# Payment verification - autonomi network lookup + EVM payment
Expand Down
1 change: 1 addition & 0 deletions src/devnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,7 @@ impl Devnet {
topic,
source: Some(source),
data,
..
} = event
{
if topic == CHUNK_PROTOCOL_ID {
Expand Down
1 change: 1 addition & 0 deletions src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -803,6 +803,7 @@ impl RunningNode {
topic,
source: Some(source),
data,
..
} = event
{
let handler_info: Option<(&str, &str)> = if topic == CHUNK_PROTOCOL_ID {
Expand Down
1 change: 1 addition & 0 deletions src/replication/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ impl ReplicationEngine {
topic,
source: Some(source),
data,
..
} = event {
// Determine if this is a replication message
// and whether it arrived via the /rr/ request-response
Expand Down
1 change: 1 addition & 0 deletions tests/e2e/testnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1197,6 +1197,7 @@ impl TestNetwork {
topic,
source: Some(source),
data,
..
} = event
{
if topic == CHUNK_PROTOCOL_ID {
Expand Down
Loading