-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- bump workspace_optimizer to v0.14.0 - bump Rust dependencies and organize them into workspace - set release profile at workspace Cargo.toml - bump Rust toolchain to v1.71.0 - bump protobuf codegen to v3.3.0 - prepare shell scripts for sdk v47: use broadcast mode sync
- Loading branch information
Showing
22 changed files
with
282 additions
and
227 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
docker run --rm -v "$(pwd)":/code \ | ||
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \ | ||
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \ | ||
cosmwasm/workspace-optimizer:0.12.13 | ||
cosmwasm/workspace-optimizer:0.14.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,25 @@ | ||
[package] | ||
name = "neutron-sdk" | ||
description = "Neutron CosmWasm SDK for interacting with Neutron blockchain" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/neutron-org/neutron-sdk" | ||
homepage = "https://neutron.org" | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[profile.release] | ||
opt-level = 3 | ||
debug = false | ||
rpath = false | ||
lto = true | ||
debug-assertions = false | ||
codegen-units = 1 | ||
panic = 'abort' | ||
incremental = false | ||
overflow-checks = true | ||
|
||
[dependencies] | ||
cosmwasm-std = { version = "1.3.0", features = ["staking"] } | ||
cosmos-sdk-proto = { version = "0.16.0", default-features = false } | ||
prost = "0.11" | ||
serde = { version = "1.0.149", default-features = false, features = ["derive"] } | ||
schemars = "0.8.10" | ||
serde-json-wasm = "0.5.1" | ||
cw-storage-plus = { version = "1.1.0", features = ["iterator"]} | ||
base64 = "0.21.2" | ||
bech32 = "0.9.1" | ||
thiserror = { version = "1.0" } | ||
serde_json = { version = "1.0.87" } | ||
protobuf = { version = "3.2.0", features = ["with-bytes"] } | ||
cosmwasm-schema = "1.3.0" | ||
cosmwasm-std = { workspace = true } | ||
cosmos-sdk-proto = { workspace = true } | ||
serde = { workspace = true } | ||
schemars = { workspace = true } | ||
serde-json-wasm = { workspace = true } | ||
bech32 = { workspace = true } | ||
thiserror = { workspace = true } | ||
protobuf = { workspace = true } | ||
cosmwasm-schema = { workspace = true } | ||
|
||
[dev-dependencies] | ||
cosmwasm-schema = { version = "1.3.0", default-features = false } | ||
prost-types = "0.11.1" | ||
hex = "0.4.3" | ||
base64 = { workspace = true } | ||
prost-types = { workspace = true } | ||
hex = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
[toolchain] | ||
channel = "1.68.2" | ||
channel = "1.71.0" |
Oops, something went wrong.