Skip to content

Commit

Permalink
chore!: updates near-* dependencies to 0.27 release (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
akorchyn authored Nov 18, 2024
1 parent e1b5685 commit e9a1eea
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 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.26"
near-primitives = "0.26"
near-jsonrpc-primitives = "0.27"
near-primitives = "0.27"
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.5.0"
near-sdk = "5.6.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.5.0"
near-sdk = "5.6.0"

[profile.release]
codegen-units = 1
Expand Down
20 changes: 10 additions & 10 deletions workspaces/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,31 +32,31 @@ 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.5", optional = true }
near-sdk = { version = "5.6", optional = true }
near-account-id = "1.0.0"
near-crypto = "0.26"
near-primitives = "0.26"
near-jsonrpc-primitives = "0.26"
near-jsonrpc-client = { version = "0.13", features = ["sandbox"] }
near-sandbox-utils = "0.10"
near-chain-configs = { version = "0.26", optional = true }
near-crypto = "0.27"
near-primitives = "0.27"
near-jsonrpc-primitives = "0.27"
near-jsonrpc-client = { version = "0.14", features = ["sandbox"] }
near-sandbox-utils = "0.12"
near-chain-configs = { version = "0.27", optional = true }

[build-dependencies]
near-sandbox-utils = "0.10"
near-sandbox-utils = "0.12"

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[dev-dependencies]
anyhow = "1.0"
futures = "0.3"
near-sdk = "5.5"
near-sdk = "5.6"
test-log = { version = "0.2.8", default-features = false, features = ["trace"] }
tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }

[features]
default = ["install"]
install = [] # Install the sandbox binary during compile time
install = [] # Install the sandbox binary during compile time
interop_sdk = ["near-sdk"]
unstable = ["dep:cargo-near-build"]
experimental = ["near-chain-configs"]
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.5.0"
near-sdk = "5.6.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.5.0"
near-sdk = "5.6.0"

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

0 comments on commit e9a1eea

Please sign in to comment.