more cargo versioning

This commit is contained in:
mfahampshire
2025-12-05 20:37:23 +00:00
parent 6868c7d5ae
commit 6e4ae07ac6
3 changed files with 5 additions and 1 deletions
+1
View File
@@ -381,6 +381,7 @@ prometheus = { version = "0.14.0" }
# sdk related deps so we can pull in workspace versions of these in other crates' cargo files, and not have to define the version everywhere
#
# these versions should be kept in line with the workspace version defined above
nym-api-requests = { version = "1.20.1", path = "nym-api/nym-api-requests" }
nym-bandwidth-controller = { version = "1.20.1", path = "common/bandwidth-controller" }
nym-bin-common = { version = "1.20.1", path = "common/bin-common" }
nym-client-core = { version = "1.20.1", path = "common/client-core" }
+2 -1
View File
@@ -7,6 +7,7 @@ license = { workspace = true }
repository = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
description = "Nym's topology crate"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -37,7 +38,7 @@ nym-sphinx-types = { path = "../nymsphinx/types", features = [
# I'm not sure how to feel about pulling in this dependency here...
nym-api-requests = { path = "../../nym-api/nym-api-requests" }
nym-api-requests = { workspace = true }
# 'wasm-serde-types' feature
+2
View File
@@ -21,3 +21,5 @@ To publish the `nym-sdk` crate:
# If there are no errors, run with execute flag - this will attempt to publish the nym-sdk crate and its dependencies to crates.io
./publish-sdk.sh --execute 1.20.0
```
**Note** that the script will update the dependency versions in the root `Cargo.toml` file, but double check anyway.