Skip to content

Commit

Permalink
fix(deps): addressed postcard syntax issue (#312)
Browse files Browse the repository at this point in the history
This commit addresses deprecation warning in this repo.

Breaking changes
----------------
no breaking change, tested the fix with:
----
cargo test -r --all-features
----
  • Loading branch information
0xObsidian authored Dec 11, 2024
1 parent c1a61b6 commit 63724c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories = { workspace = true }

[dependencies]
nexus-rt-macros = { path = "macros", version = "0.1.0" }
postcard = { version = "1.0.10", features = ["alloc"], default_features = false }
postcard = { version = "1.0.10", features = ["alloc"], default-features = false }
serde = { version = "1.0", default-features = false }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ serde.workspace = true

nexus-core = { path = "../core", features = ["prover_nova", "prover_jolt", "prover_hypernova"] }
nexus-macro = { path = "../macro" }
postcard = { version = "1.0.10", features = ["alloc"], default_features = false }
postcard = { version = "1.0.10", features = ["alloc"], default-features = false }
uuid = { version = "1.9.1", features = ["v4", "fast-rng"] }
thiserror = "1.0.61"

Expand Down

0 comments on commit 63724c1

Please sign in to comment.