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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#1230](https://github.com/o1-labs/openmina/pull/1230))
- bump itertools from 0.10.5 to 0.12.0 #1228
([#1228](https://github.com/o1-labs/openmina/pull/1228))
- bump serde from 1.0.190 to 1.0.219 #1273
([#1273](https://github.com/o1-labs/openmina/pull/1273))

### Other

Expand Down
8 changes: 4 additions & 4 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ openmina-node-account = { path = "node/account" }
redux = { git = "https://github.com/openmina/redux-rs.git", rev = "ab14890c", features = [
"serde",
] }
serde = "1.0.190"
serde = "1.0.219"
serde_json = "1.0.107"
serde_with = { version = "3.7.0", features = ["hex"] }
static_assertions = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ num_cpus = "1.0"
rand = "0.8.0"
rayon = "1.5"
redux = { workspace = true }
serde = "1.0.158"
serde = "1.0.219"
sha2 = "0.10"
tokio = { version = "1.26.0" }
vrf = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ openmina-fuzzer = { path = "../fuzzer", optional = true }
openmina-macros = { path = "../macros" }
rand = "0.8.0"
redux = { workspace = true }
serde = { version = "1.0.147", features = ["rc"] }
serde = { version = "1.0.219", features = ["rc"] }
serde_json = "1.0"
sha2 = "0.10.6"
slab = { version = "0.4.7", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion mina-p2p-messages/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ derive_more = "0.99.17"
hex = "0.4.3"
lazy_static = "1.4.0"
num-bigint = "0.4.6"
serde = { version = "1.0.142", features = ["derive"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_bytes = "0.11"
serde_json = { version = "1.0.83" }
sha2 = { version = "0.10.2" }
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ num_enum = "0.5.7"
poseidon = { workspace = true }
rand = "0.8.0"
redux = { workspace = true }
serde = "1.0.147"
serde = "1.0.219"
serde_json = { version = "1.0.82", features = [
"unbounded_depth",
"arbitrary_precision",
Expand Down
2 changes: 1 addition & 1 deletion node/account/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mina-p2p-messages = { workspace = true }
mina-signer = { workspace = true }
openmina-core = { path = "../../core" }
rand = "0.8"
serde = "1.0.147"
serde = "1.0.219"
serde_json = { version = "1.0.82", features = [
"unbounded_depth",
"arbitrary_precision",
Expand Down
2 changes: 1 addition & 1 deletion node/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mina-p2p-messages = { workspace = true }
mina-signer = { workspace = true }
rand = "0.8"
rayon = "1.5"
serde = "1.0.158"
serde = "1.0.219"
serde_json = "1.0.94"
sha3 = "0.10.8"
thiserror = "1.0.44"
Expand Down
2 changes: 1 addition & 1 deletion node/invariants/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ documented = { version = "0.6" }
lazy_static = "1.4.0"
node = { path = "../" }
redux = { workspace = true }
serde = "1.0.147"
serde = "1.0.219"
serde_json = { version = "1.0.82", features = [
"unbounded_depth",
"arbitrary_precision",
Expand Down
2 changes: 1 addition & 1 deletion node/native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rand = "0.8"
rayon = "1.5"
redux = { workspace = true, features = ["serializable_callbacks"] }
reqwest = { version = "0.11.24", features = ["blocking", "json"] }
serde = "1.0.158"
serde = "1.0.219"
serde_json = "1.0.94"
sha3 = "0.10.8"
strum = "0.26.2"
Expand Down
2 changes: 1 addition & 1 deletion node/testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ postcard = { version = "1.0.9", features = ["use-std"] }
rand = "0.8"
rayon = "1.5"
redux = { workspace = true }
serde = "1.0.147"
serde = "1.0.219"
serde_json = { version = "1.0.82", features = [
"unbounded_depth",
"arbitrary_precision",
Expand Down
2 changes: 1 addition & 1 deletion node/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ crate-type = ["cdylib", "rlib"]
derive_more = "0.99.17"
rand = "0.8"
rayon = "1.5"
serde = "1.0.158"
serde = "1.0.219"
serde_json = "1.0.94"
# reqwest = { version = "0.11.24", features = ["json"] }
anyhow = "1.0.70"
Expand Down
2 changes: 1 addition & 1 deletion vrf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ o1-utils = { workspace = true }
openmina-node-account = { workspace = true }
poseidon = { workspace = true }
redux = { workspace = true }
serde = "1.0.147"
serde = "1.0.219"
serde_json = { version = "1.0.82", features = [
"unbounded_depth",
"arbitrary_precision",
Expand Down
Loading