-
Notifications
You must be signed in to change notification settings - Fork 618
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump rust optimizer across osmosis * Update CHANGELOG.md
- Loading branch information
Showing
12 changed files
with
58 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,10 @@ | |
[package] | ||
name = "crosschain-registry" | ||
version = "0.1.0" | ||
authors = ["Adam Tucker <[email protected]>", "Nicolas Lara <[email protected]>"] | ||
authors = [ | ||
"Adam Tucker <[email protected]>", | ||
"Nicolas Lara <[email protected]>", | ||
] | ||
edition = "2021" | ||
|
||
exclude = [ | ||
|
@@ -31,27 +34,27 @@ imported = [] | |
optimize = """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/rust-optimizer:0.12.11 | ||
cosmwasm/rust-optimizer:0.16.0 | ||
""" | ||
optimize-m1 = """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/rust-optimizer-arm64:0.12.11 | ||
cosmwasm/rust-optimizer-arm64:0.16.0 | ||
""" | ||
|
||
[[bin]] | ||
name = "build-schema" | ||
path = "build-schema/schema.rs" | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw2 = { workspace = true } | ||
serde = { workspace = true } | ||
thiserror = { workspace = true } | ||
cw-utils = { workspace = true } | ||
registry = { path = "../../packages/registry"} | ||
registry = { path = "../../packages/registry" } | ||
|
||
[dev-dependencies] | ||
cw-multi-test = "0.16.2" |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ name = "crosschain-swaps" | |
version = "0.1.0" | ||
authors = ["Nicolas Lara <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.65.0" | ||
rust-version = "1.65.0" | ||
|
||
exclude = [ | ||
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the crates publication. | ||
|
@@ -32,21 +32,21 @@ imported = [] | |
optimize = """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/rust-optimizer:0.12.11 | ||
cosmwasm/rust-optimizer:0.16.0 | ||
""" | ||
optimize-m1 = """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/rust-optimizer-arm64:0.12.11 | ||
cosmwasm/rust-optimizer-arm64:0.16.0 | ||
""" | ||
|
||
[[bin]] | ||
name = "build-schema" | ||
path = "build-schema/schema.rs" | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw2 = { workspace = true } | ||
schemars = { workspace = true } | ||
|
@@ -57,14 +57,18 @@ serde-json-wasm = { workspace = true } | |
serde-cw-value = { workspace = true } | ||
bech32 = { workspace = true } | ||
cw-utils = { workspace = true } | ||
itertools = {workspace = true} | ||
itertools = { workspace = true } | ||
|
||
swaprouter = { path = "../swaprouter", features = ["imported"]} | ||
registry = { path = "../../packages/registry"} | ||
prost = {version = "0.11.2", default-features = false, features = ["prost-derive"]} | ||
swaprouter = { path = "../swaprouter", features = ["imported"] } | ||
registry = { path = "../../packages/registry" } | ||
prost = { version = "0.11.2", default-features = false, features = [ | ||
"prost-derive", | ||
] } | ||
enum-repr = "0.2.6" | ||
|
||
[dev-dependencies] | ||
cw-multi-test = { workspace = true } | ||
osmosis-test-tube = { workspace = true } | ||
crosschain-registry = { path = "../crosschain-registry", features = ["imported"]} | ||
crosschain-registry = { path = "../crosschain-registry", features = [ | ||
"imported", | ||
] } |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "outpost" | |
version = "0.1.0" | ||
authors = ["Nicolas Lara <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.65.0" | ||
rust-version = "1.65.0" | ||
|
||
exclude = [ | ||
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. | ||
|
@@ -29,21 +29,21 @@ callbacks = [] | |
optimize = """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/rust-optimizer:0.12.11 | ||
cosmwasm/rust-optimizer:0.16.0 | ||
""" | ||
optimize-m1 = """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/rust-optimizer-arm64:0.12.11 | ||
cosmwasm/rust-optimizer-arm64:0.16.0 | ||
""" | ||
|
||
[[bin]] | ||
name = "build-schema" | ||
path = "build-schema/schema.rs" | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw2 = { workspace = true } | ||
thiserror = { workspace = true } | ||
|
@@ -52,9 +52,9 @@ bech32 = { workspace = true } | |
cw-utils = { workspace = true } | ||
osmosis-std = { workspace = true } | ||
|
||
swaprouter = { path = "../swaprouter", features = ["imported"]} | ||
crosschain-swaps = { path = "../crosschain-swaps", features = ["imported"]} | ||
registry = { path = "../../packages/registry"} | ||
swaprouter = { path = "../swaprouter", features = ["imported"] } | ||
crosschain-swaps = { path = "../crosschain-swaps", features = ["imported"] } | ||
registry = { path = "../../packages/registry" } | ||
|
||
[dev-dependencies] | ||
cw-multi-test = { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ authors = ["Sunny Aggarwal <[email protected]>"] | |
edition = "2021" | ||
name = "swaprouter" | ||
version = "0.1.0" | ||
rust-version = "1.65.0" | ||
rust-version = "1.65.0" | ||
|
||
exclude = [ | ||
# Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. | ||
|
@@ -32,21 +32,21 @@ imported = [] | |
optimize = """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/rust-optimizer:0.12.11 | ||
cosmwasm/rust-optimizer:0.16.0 | ||
""" | ||
optimize-m1 = """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/rust-optimizer-arm64:0.12.11 | ||
cosmwasm/rust-optimizer-arm64:0.16.0 | ||
""" | ||
|
||
[[bin]] | ||
name = "build-schema" | ||
path = "build-schema/schema.rs" | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw2 = { workspace = true } | ||
schemars = { 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
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