-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: bump cw-std to 2+; disable cw-orch
- Loading branch information
Showing
14 changed files
with
756 additions
and
3,010 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,39 +1,38 @@ | ||
[package] | ||
name = "polytone-tester" | ||
authors = ["ekez <[email protected]>"] | ||
description = "A Polytone tester contract." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
name = "polytone-tester" | ||
authors = ["ekez <[email protected]>"] | ||
description = "A Polytone tester contract." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
rust-version = { workspace = true } | ||
version = { workspace = true } | ||
version = { workspace = true } | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
# disables #[entry_point] (i.e. instantiate/execute/query) export | ||
library = [] | ||
|
||
# This is here inspite of the warnings to make sure it is not missed | ||
# if the contract is taken out of the workspace | ||
[profile.release] | ||
codegen-units = 1 | ||
debug = false | ||
codegen-units = 1 | ||
debug = false | ||
debug-assertions = false | ||
incremental = false | ||
lto = true | ||
opt-level = 3 | ||
overflow-checks = true # very important, do not turn these off. | ||
panic = 'abort' | ||
rpath = false | ||
incremental = false | ||
lto = true | ||
opt-level = 3 | ||
overflow-checks = true # very important, do not turn these off. | ||
panic = 'abort' | ||
rpath = false | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw2 = { workspace = true } | ||
thiserror = { workspace = true } | ||
polytone = { workspace = true } | ||
cw2 = { workspace = true } | ||
thiserror = { workspace = true } | ||
polytone = { 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 |
---|---|---|
@@ -1,46 +1,46 @@ | ||
[package] | ||
name = "polytone-note" | ||
authors = ["ekez <[email protected]>"] | ||
description = "Sends messages to be executed on other chains over IBC." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
name = "polytone-note" | ||
authors = ["ekez <[email protected]>"] | ||
description = "Sends messages to be executed on other chains over IBC." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
rust-version = { workspace = true } | ||
repository = { workspace = true } | ||
version = { workspace = true } | ||
repository = { workspace = true } | ||
version = { workspace = true } | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
# disables #[entry_point] (i.e. instantiate/execute/query) export | ||
library = [] | ||
interface = ["dep:cw-orch"] | ||
interface = [] | ||
# interface = ["dep:cw-orch"] | ||
|
||
# This is here inspite of the warnings to make sure it is not missed | ||
# if the contract is taken out of the workspace | ||
[profile.release] | ||
codegen-units = 1 | ||
debug = false | ||
codegen-units = 1 | ||
debug = false | ||
debug-assertions = false | ||
incremental = false | ||
lto = true | ||
opt-level = 3 | ||
overflow-checks = true # very important, do not turn these off. | ||
panic = 'abort' | ||
rpath = false | ||
incremental = false | ||
lto = true | ||
opt-level = 3 | ||
overflow-checks = true # very important, do not turn these off. | ||
panic = 'abort' | ||
rpath = false | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw-utils = { workspace = true } | ||
cw2 = { workspace = true } | ||
thiserror = { workspace = true } | ||
polytone = { workspace = true } | ||
cw-orch = { workspace = true, optional = true } | ||
cw-utils = { workspace = true } | ||
cw2 = { workspace = true } | ||
thiserror = { workspace = true } | ||
polytone = { workspace = true } | ||
# cw-orch = { workspace = true, optional = true } | ||
|
||
[dev-dependencies] | ||
cw-multi-test = { workspace = true } | ||
anyhow = { workspace = true } | ||
anyhow = { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
[package] | ||
name = "polytone-proxy" | ||
authors = ["ekez <[email protected]>"] | ||
description = "An Interchain Account contract." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
name = "polytone-proxy" | ||
authors = ["ekez <[email protected]>"] | ||
description = "An Interchain Account contract." | ||
edition = { workspace = true } | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
rust-version = { workspace = true } | ||
version = { workspace = true } | ||
version = { workspace = true } | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
# disables #[entry_point] (i.e. instantiate/execute/query) export | ||
library = [] | ||
interface = ["dep:cw-orch"] | ||
interface = [] | ||
# interface = ["dep:cw-orch"] | ||
|
||
# This is here inspite of the warnings to make sure it is not missed | ||
# if the contract is taken out of the workspace | ||
[profile.release] | ||
codegen-units = 1 | ||
debug = false | ||
codegen-units = 1 | ||
debug = false | ||
debug-assertions = false | ||
incremental = false | ||
lto = true | ||
opt-level = 3 | ||
overflow-checks = true # very important, do not turn these off. | ||
panic = 'abort' | ||
rpath = false | ||
incremental = false | ||
lto = true | ||
opt-level = 3 | ||
overflow-checks = true # very important, do not turn these off. | ||
panic = 'abort' | ||
rpath = false | ||
|
||
[dependencies] | ||
cosmwasm-schema = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cosmwasm-std = { workspace = true } | ||
cw-storage-plus = { workspace = true } | ||
cw-utils = { workspace = true } | ||
cw2 = { workspace = true } | ||
thiserror = { workspace = true } | ||
polytone = { workspace = true } | ||
cw-orch = { workspace = true, optional = true } | ||
cw-utils = { workspace = true } | ||
cw2 = { workspace = true } | ||
thiserror = { workspace = true } | ||
polytone = { workspace = true } | ||
# cw-orch = { workspace = true, optional = true } | ||
|
||
[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
Oops, something went wrong.