Skip to content

Commit

Permalink
chore!: updates near-* dependencies to 0.25 (#375)
Browse files Browse the repository at this point in the history
Sandbox has not been updated as it's broken on Mac OS.
See near/nearcore#12062
  • Loading branch information
akorchyn committed Sep 10, 2024
1 parent 0ead99d commit 26ee55b
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ anyhow = "1.0"
maplit = "1.0"
near-units = "0.2.0"
near-gas = { version = "0.3", features = ["serde", "borsh", "schemars"] }
near-jsonrpc-primitives = "0.24"
near-primitives = "0.24"
near-jsonrpc-primitives = "0.25"
near-primitives = "0.25"
serde = "1.0"
serde_with = "3.4"
serde_json = { version = "1.0" }
Expand Down
2 changes: 1 addition & 1 deletion examples/noop-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
near-sdk = "5.0.0-alpha.2"
near-sdk = "5.4.0"

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
near-sdk = "5.0.0-alpha.2"
near-sdk = "5.4.0"

[profile.release]
codegen-units = 1
Expand Down
14 changes: 7 additions & 7 deletions workspaces/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ url = { version = "2.2.2", features = ["serde"] }
near-abi-client = "0.1.1"
near-gas = { version = "0.3", features = ["serde", "borsh", "schemars"] }
near-token = { version = "0.3", features = ["serde"] }
near-sdk = { version = "5.3", optional = true }
near-sdk = { version = "5.4", optional = true }
near-account-id = "1.0.0"
near-crypto = "0.24"
near-primitives = "0.24"
near-jsonrpc-primitives = "0.24"
near-jsonrpc-client = { version = "0.11", features = ["sandbox"] }
near-crypto = "0.25"
near-primitives = "0.25"
near-jsonrpc-primitives = "0.25"
near-jsonrpc-client = { version = "0.12", features = ["sandbox"] }
near-sandbox-utils = "0.10"
near-chain-configs = { version = "0.24", optional = true }
near-chain-configs = { version = "0.25", optional = true }

[build-dependencies]
near-sandbox-utils = "0.10"
Expand All @@ -51,7 +51,7 @@ libc = "0.2"
[dev-dependencies]
anyhow = "1.0"
futures = "0.3"
near-sdk = "5.3"
near-sdk = "5.4"
test-log = { version = "0.2.8", default-features = false, features = ["trace"] }
tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }

Expand Down
2 changes: 1 addition & 1 deletion workspaces/tests/test-contracts/status-message/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
near-sdk = "5.3.0"
near-sdk = "5.4.0"

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion workspaces/tests/test-contracts/type-serialize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ crate-type = ["cdylib"]

[dependencies]
bs58 = "0.5"
near-sdk = "5.3.0"
near-sdk = "5.4.0"

[profile.release]
codegen-units = 1
Expand Down

0 comments on commit 26ee55b

Please sign in to comment.