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
14 changes: 10 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 @@ -9,7 +9,7 @@ homepage = "https://axone.xyz/"
keywords = ["cosmwasm", "blockchain"]
license = "BSD-3-Clause"
repository = "https://github.com/axone-protocol/contracts"
rust-version = "1.81"
rust-version = "1.85"
version = "7.0.0"

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ The project is structured around a set of Rust workspaces, each defining a Smart

Be sure you have the following tools installed:

- [Rust](https://www.rust-lang.org/tools/install) v1.81 or higher
- [Rust](https://www.rust-lang.org/tools/install) v1.85 or higher
- [cargo-make](https://github.com/sagiegurari/cargo-make) v0.36.3 or higher
- [Docker](https://docs.docker.com/get-docker/)
- [jq](https://stedolan.github.io/jq/download/) v1.6 or higher
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.81.0"
msrv = "1.85.0"
2 changes: 1 addition & 1 deletion contracts/axone-objectarium/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ exclude = [
crate-type = ["cdylib", "rlib"]

[dependencies]
base16ct = { version = "0.2.0", features = ["alloc"] }
base16ct = { version = "0.3.0", features = ["alloc"] }
bin-it = "1.2.0"
bs58 = "0.5.1"
cosmwasm-schema.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion packages/axone-rdf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = { workspace = true }
version = { workspace = true }

[dependencies]
base16ct = { version = "0.2.0", features = ["alloc"] }
base16ct = { version = "0.3.0", features = ["alloc"] }
cosmwasm-std.workspace = true
itertools = "0.14.0"
rio_api.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.81.0"
channel = "1.85.1"
components = ["clippy", "rustfmt", "rust-src", "llvm-tools-preview"]
profile = "minimal"
targets = ["wasm32-unknown-unknown"]
Loading