Skip to content

Commit

Permalink
Update serde and serde_json dependencies to specific versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kpob committed Jul 25, 2024
1 parent 60e8376 commit 7a29ab4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ casper-event-standard = "0.5.0"
blake2 = "0.10.6"
log = "0.4.20"
env_logger = "0.11.1"
serde = { version = "1.0.195", default-features = false }
serde_json = { version = "1.0.113", default-features = false }
serde = { version = "=1.0.195", default-features = false }
serde_json = { version = "=1.0.113", default-features = false }
num-traits = { version = "0.2.14", default-features = false }
mockall = { version = "0.12.1" }
tokio = "1.38"
2 changes: 1 addition & 1 deletion benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ odra-modules = { path = "../modules" }
base64 = { version = "0.22.0", default-features = false, features = ["alloc"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
serde_json = "1.0.113"
serde_json = "=1.0.113"

[[bin]]
name = "benchmark_build_contract"
Expand Down
4 changes: 2 additions & 2 deletions modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ keywords = ["wasm", "webassembly", "blockchain"]

[dependencies]
odra = { path = "../odra", version = "1.1.0", default-features = false }
serde = { version = "1.0.80", default-features = false }
serde_json = { version = "1.0.59", default-features = false }
serde = { version = "=1.0.195", default-features = false }
serde_json = { version = "=1.0.113", default-features = false }
serde-json-wasm = { version = "1.0.1", default-features = false }
base16 = { version = "0.2.1", default-features = false }
base64 = { version = "0.22.0", default-features = false, features = ["alloc"] }
Expand Down
4 changes: 2 additions & 2 deletions odra-casper/rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ odra-schema = { workspace = true }
casper-execution-engine = { workspace = true }
casper-hashing = "3.0.0"
jsonrpc-lite = "0.6.0"
serde_json = { version = "1.0", features = ["raw_value"] }
serde = "1.0"
serde_json = { version = "=1.0.113", features = ["raw_value"] }
serde = { workspace = true }
log = "0.4.20"
hex = "0.4.3"
reqwest = { version = "0.11.16", features = ["blocking", "json"] }
Expand Down

0 comments on commit 7a29ab4

Please sign in to comment.