|
1 | 1 | [package] |
2 | | -authors = [ "Albert Chon <[email protected]>", "F Grabner <[email protected]>", "Markus Waas <[email protected]>" ] |
| 2 | +authors = [ "Albert Chon [email protected]", "F Grabner [email protected]", "Markus Waas [email protected]", "Jose Luis [email protected]" ] |
3 | 3 | description = "Bindings for CosmWasm contracts to call into custom modules of Injective Core" |
4 | | -edition = "2021" |
5 | | -license = "Apache-2.0" |
6 | | -name = "injective-cosmwasm" |
7 | | -readme = "README.md" |
8 | | -repository = "https://github.com/InjectiveLabs/cw-injective/tree/dev/packages/injective-cosmwasm" |
9 | | -version = "0.3.3" |
10 | | -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 4 | +edition = "2021" |
| 5 | +license = "Apache-2.0" |
| 6 | +name = "injective-cosmwasm" |
| 7 | +readme = "README.md" |
| 8 | +repository = "https://github.com/InjectiveLabs/cw-injective/tree/dev/packages/injective-cosmwasm" |
| 9 | +version = "0.3.4-1" |
11 | 10 |
|
12 | 11 | [dependencies] |
13 | | -cosmwasm-std = { workspace = true } |
14 | | -cw-storage-plus = { workspace = true } |
15 | | -ethereum-types = { workspace = true } |
16 | | -hex = { workspace = true } |
17 | | -injective-math = { workspace = true } |
18 | | -schemars = { workspace = true } |
19 | | -serde = { workspace = true } |
20 | | -serde_repr = { workspace = true } |
21 | | -subtle-encoding = { workspace = true } |
22 | | -tiny-keccak = { workspace = true } |
| 12 | +cosmwasm-std = { version = "2.2.2", features = [ "abort", "cosmwasm_1_2", "cosmwasm_1_3", "cosmwasm_1_4", "cosmwasm_2_0", "iterator", "stargate" ] } |
| 13 | +cw-storage-plus = { version = "2.0.0" } |
| 14 | +ethereum-types = { version = "0.5.2" } |
| 15 | +hex = { version = "0.4.3", features = [ "serde" ] } |
| 16 | +injective-math = { version = "0.3.3" } |
| 17 | +schemars = { version = "0.8.16" } |
| 18 | +serde = { version = "1.0.196", default-features = false, features = [ "derive" ] } |
| 19 | +serde_repr = { version = "0.1.17" } |
| 20 | +subtle-encoding = { version = "0.5.1", features = [ "bech32-preview" ] } |
| 21 | +tiny-keccak = { version = "1.2.1" } |
| 22 | + |
23 | 23 |
|
24 | 24 | [dev-dependencies] |
25 | | -cosmwasm-schema = { workspace = true } |
26 | | -serde-json-wasm = { workspace = true } |
27 | | -serde_test = { workspace = true } |
| 25 | +serde-json-wasm = { version = "1.0.0" } |
| 26 | +serde_test = { version = "1.0.176" } |
| 27 | + |
| 28 | +[profile.release] |
| 29 | +codegen-units = 1 |
| 30 | +debug = false |
| 31 | +debug-assertions = false |
| 32 | +incremental = false |
| 33 | +lto = true |
| 34 | +opt-level = 3 |
| 35 | +overflow-checks = true |
| 36 | +panic = 'abort' |
| 37 | +rpath = false |
| 38 | + |
| 39 | + |
0 commit comments