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
20 changes: 10 additions & 10 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion ant-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ant-cli"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
description = "Unified CLI (`ant`) for the Autonomi network: store and retrieve data, and manage local nodes."
license = "MIT OR Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions ant-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ant-core"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "Headless Rust library for the Autonomi network: data storage and retrieval with self-encryption and EVM payments, plus node lifecycle management."
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -37,7 +37,7 @@ tower-http = { version = "0.6.8", features = ["cors"] }
# under `ant_protocol::{evm, transport, pqc}`. This is the ONE pin for
# those three deps — do not add direct evmlib/saorsa-core/saorsa-pqc
# deps here or the version can skew between ant-client and ant-node.
ant-protocol = "2.3.0"
ant-protocol = "2.3.1"
xor_name = "5"
self_encryption = "0.36"
futures = "0.3"
Expand Down Expand Up @@ -65,7 +65,7 @@ sysinfo = { version = "0.32", default-features = false, features = ["system"] }
# `ant-protocol` pin above points at a released version, this ant-node must
# track the matching released version carrying the same saorsa-core /
# ant-protocol lineage.
ant-node = { version = "0.15.0", optional = true }
ant-node = { version = "0.16.0", optional = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

[target.'cfg(unix)'.dependencies]
Expand Down Expand Up @@ -96,7 +96,7 @@ test-utils = []
# always compile even without the `devnet` feature. Pinned to the same
# version as the runtime dep so there is a single ant-node /
# saorsa-core version across the whole graph.
ant-node = { version = "0.15.0", features = ["test-utils"] }
ant-node = { version = "0.16.0", features = ["test-utils"] }
serial_test = "3"
anyhow = "1"
alloy = { version = "1.6", features = ["node-bindings"] }
Expand Down
Loading