-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update cw-orch dependency * add getrandom dependency to .toml --------- Co-authored-by: Jake Hartnell <[email protected]>
- Loading branch information
1 parent
2e97711
commit db12406
Showing
5 changed files
with
20 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
[package] | ||
name = "cw-abc" | ||
version = "0.0.1" | ||
authors = ["Ethan Frey <[email protected]>", "Jake Hartnell", "Adair <[email protected]>"] | ||
authors = [ | ||
"Ethan Frey <[email protected]>", | ||
"Jake Hartnell", | ||
"Adair <[email protected]>", | ||
] | ||
edition = { workspace = true } | ||
description = "Implements an Augmented Bonding Curve" | ||
license = "Apache-2.0" | ||
|
@@ -16,7 +20,7 @@ crate-type = ["cdylib", "rlib"] | |
backtraces = ["cosmwasm-std/backtraces"] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
boot = ["dep:boot-core"] | ||
boot = ["dep:cw-orch"] | ||
|
||
[dependencies] | ||
cw-utils = { workspace = true } | ||
|
@@ -30,11 +34,12 @@ cw-address-like = "1.0.4" | |
rust_decimal = "1.14.3" | ||
integer-sqrt = "0.1.5" | ||
integer-cbrt = "0.1.2" | ||
getrandom = { version = "0.2", features = ["js"] } | ||
# TODO publish this | ||
token-bindings = { git = "https://github.com/CosmosContracts/token-bindings", rev = "1412b94" } | ||
cw-ownable = { workspace = true } | ||
cw-paginate-storage = { workspace = true } | ||
boot-core = { version = "0.10.0", optional = true, git = "https://github.com/AbstractSDK/BOOT", branch = "fix/custom_binding_contract_wrapper" } | ||
cw-orch = { version = "0.13.3", optional = true, git = "https://github.com/AbstractSDK/cw-orchestrator", branch = "main" } | ||
|
||
[dev-dependencies] | ||
# TODO move to workspace | ||
|
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