diff --git a/Cargo.lock b/Cargo.lock index 8d584ef..1ac21b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -15,7 +15,7 @@ dependencies = [ [[package]] name = "archway-bindings" -version = "0.1.0" +version = "0.2.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -410,7 +410,7 @@ dependencies = [ [[package]] name = "increment" -version = "0.1.0" +version = "0.2.0" dependencies = [ "archway-bindings", "cosmwasm-schema", diff --git a/contracts/increment/Cargo.toml b/contracts/increment/Cargo.toml index 1991951..8cd8726 100644 --- a/contracts/increment/Cargo.toml +++ b/contracts/increment/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "increment" -version = "0.1.0" -authors = ["Augusto Elesbão "] +version = "0.2.0" +authors = ["Augusto Elesbão "] edition = "2021" exclude = [ @@ -15,17 +15,6 @@ exclude = [ [lib] crate-type = ["cdylib", "rlib"] -[profile.release] -opt-level = 3 -debug = false -rpath = false -lto = true -debug-assertions = false -codegen-units = 1 -panic = 'abort' -incremental = false -overflow-checks = true - [features] # for more explicit tests, cargo test --features=backtraces backtraces = ["cosmwasm-std/backtraces"] @@ -36,11 +25,11 @@ optimize = """docker run --rm -v "$(pwd)":/code \ --mount type=volume,source="cosmwasm_sccache",target=/root/.cache/sccache \ --mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \ --mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \ - cosmwasm/rust-optimizer:0.12.10 + cosmwasm/rust-optimizer:0.14.0 """ [dependencies] -archway-bindings = { version = "0.1.0", path = "../../packages/bindings" } +archway-bindings = { version = "0.2.0", path = "../../packages/bindings" } cosmwasm-schema = { workspace = true } cosmwasm-std = { version = "1.1.9", features = ["staking", "stargate"] } cosmwasm-storage = { workspace = true } diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index d71b3a7..81375bf 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "archway-bindings" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "CosmWasm bindings to interact with Archway's modules" authors = ["Augusto Elesbão "]