-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use crates injective-std and some minor refactors
- Loading branch information
Showing
3 changed files
with
26 additions
and
24 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
[package] | ||
authors = ["Markus Waas <[email protected]>"] | ||
authors = [ "Markus Waas <[email protected]>" ] | ||
edition = "2018" | ||
name = "injective-cosmwasm-mock" | ||
name = "injective-cosmwasm-mock" | ||
version = "1.0.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. | ||
"contract.wasm", | ||
"hash.txt", | ||
# 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. | ||
"contract.wasm", | ||
"hash.txt", | ||
] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
crate-type = [ "cdylib", "rlib" ] | ||
|
||
[features] | ||
# for more explicit tests, cargo test --features=backtraces | ||
backtraces = ["cosmwasm-std/backtraces"] | ||
backtraces = [ "cosmwasm-std/backtraces" ] | ||
# use library feature to disable all instantiate/execute/query exports | ||
library = [] | ||
library = [ ] | ||
|
||
[package.metadata.scripts] | ||
optimize = """docker run --rm -v "$(pwd)":/code \ | ||
|
@@ -29,13 +29,13 @@ optimize = """docker run --rm -v "$(pwd)":/code \ | |
""" | ||
|
||
[dependencies] | ||
cosmwasm-std = { version = "1.5.0" } | ||
cw-storage-plus = "1.2.0" | ||
cw2 = "0.16.0" | ||
injective-cosmwasm = { path = "../../packages/injective-cosmwasm" } | ||
schemars = "0.8.8" | ||
serde = { version = "1.0.137", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.31" } | ||
injective-test-tube = { git = "https://github.com/InjectiveLabs/test-tube", branch = "latest" } | ||
injective-std = { path = "../../packages/injective-std" } | ||
injective-math = { path = "../../packages/injective-math" } | ||
cosmwasm-std = { version = "1.5.0", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "iterator", "stargate" ] } | ||
cw-storage-plus = "1.2.0" | ||
cw2 = "0.16.0" | ||
injective-cosmwasm = { path = "../../packages/injective-cosmwasm" } | ||
injective-math = { path = "../../packages/injective-math" } | ||
injective-std = { version = "0.1.5" } | ||
injective-test-tube = "1.1.6" | ||
schemars = "0.8.8" | ||
serde = { version = "1.0.137", default-features = false, features = [ "derive" ] } | ||
thiserror = { version = "1.0.31" } |
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