From 5394857e96de5fef05be6138d20842cc407230f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 15:38:37 +0000 Subject: [PATCH 1/2] build(deps): bump base16ct from 0.2.0 to 0.3.0 Bumps [base16ct](https://github.com/RustCrypto/formats) from 0.2.0 to 0.3.0. - [Commits](https://github.com/RustCrypto/formats/compare/base16ct/v0.2.0...base16ct/v0.3.0) --- updated-dependencies: - dependency-name: base16ct dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 ++++++++++---- contracts/axone-objectarium/Cargo.toml | 2 +- packages/axone-rdf/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cfde949c..a734cab3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -317,7 +317,7 @@ dependencies = [ name = "axone-objectarium" version = "7.0.0" dependencies = [ - "base16ct", + "base16ct 0.3.0", "base64", "bin-it", "bs58", @@ -353,7 +353,7 @@ dependencies = [ name = "axone-rdf" version = "7.0.0" dependencies = [ - "base16ct", + "base16ct 0.3.0", "cosmwasm-std", "itertools 0.14.0", "rio_api", @@ -386,6 +386,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" +[[package]] +name = "base16ct" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b59d472eab27ade8d770dcb11da7201c11234bef9f82ce7aa517be028d462b" + [[package]] name = "base64" version = "0.22.1" @@ -1105,7 +1111,7 @@ version = "0.13.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" dependencies = [ - "base16ct", + "base16ct 0.2.0", "crypto-bigint", "digest", "ff", @@ -2169,7 +2175,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48518a2b5775ba8ca5b46596aae011caa431e6ce7e4a67ead66d92f08884220e" dependencies = [ - "base16ct", + "base16ct 0.2.0", "der", "generic-array", "subtle", diff --git a/contracts/axone-objectarium/Cargo.toml b/contracts/axone-objectarium/Cargo.toml index 302d0890..46db565b 100644 --- a/contracts/axone-objectarium/Cargo.toml +++ b/contracts/axone-objectarium/Cargo.toml @@ -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 diff --git a/packages/axone-rdf/Cargo.toml b/packages/axone-rdf/Cargo.toml index 4bd82b2f..13bb7c21 100644 --- a/packages/axone-rdf/Cargo.toml +++ b/packages/axone-rdf/Cargo.toml @@ -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 From 49bb58ab11c6895081337248e4870f0db882c3cc Mon Sep 17 00:00:00 2001 From: ccamel Date: Tue, 26 Aug 2025 22:21:17 +0200 Subject: [PATCH 2/2] build(msrv): bump minimum supported Rust version to 1.85 --- Cargo.toml | 2 +- README.md | 2 +- clippy.toml | 2 +- rust-toolchain.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5875a36c..2b4e66ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] diff --git a/README.md b/README.md index 26839896..79541482 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/clippy.toml b/clippy.toml index 5e90250c..4972822f 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.81.0" +msrv = "1.85.0" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 939f6189..8e19c9af 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -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"]