Skip to content
Merged
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
41 changes: 22 additions & 19 deletions Cargo.lock

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

18 changes: 3 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ant-node"
version = "0.11.2"
version = "0.11.3"
edition = "2021"
authors = ["David Irvine <david.irvine@maidsafe.net>"]
description = "Pure quantum-proof network node for the Autonomi decentralized network"
Expand Down 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 = { git = "https://github.com/WithAutonomi/ant-protocol", branch = "main" }
ant-protocol = "2.1.0"

# Core (provides EVERYTHING: networking, DHT, security, trust, storage)
saorsa-core = { git = "https://github.com/saorsa-labs/saorsa-core", branch = "fix/stability-improvements" }
saorsa-core = "0.24.3"
saorsa-pqc = "0.5"

# Payment verification - autonomi network lookup + EVM payment
Expand Down Expand Up @@ -170,15 +170,3 @@ unused_async = "allow"
cognitive_complexity = "allow"
# Allow non-const functions during initial development (may need runtime features later)
missing_const_for_fn = "allow"

# Pin ant-protocol to the WithAutonomi `fix/stability-improvements` branch
# until a crates.io release containing the matching stability fixes is
# published.
#
# `[patch.crates-io]` overrides ant-protocol/saorsa-core where transitive deps
# (e.g. evmlib, saorsa-transport) pull them from crates.io, so they unify
# with our direct git branch pins instead of producing two versions in the
# graph (which would split `MultiAddr` / DHT types).
[patch.crates-io]
ant-protocol = { git = "https://github.com/WithAutonomi/ant-protocol", branch = "main" }
saorsa-core = { git = "https://github.com/saorsa-labs/saorsa-core", branch = "fix/stability-improvements" }
Loading