forked from 0xsquid/cosmos-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 912 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "multicall"
version = "1.2.3"
authors = ["0xsquid"]
edition = "2021"
exclude = [ "contract.wasm", "hash.txt" ]
[lib]
crate-type = ["cdylib", "rlib"]
[features]
backtraces = ["cosmwasm-std/backtraces"]
imported = []
[dependencies]
cosmwasm-schema = { workspace = true }
cosmwasm-std = { workspace = true }
cw-storage-plus = { workspace = true }
cw2 = { workspace = true }
schemars = { workspace = true }
osmosis-std = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
serde-json-wasm = { workspace = true }
serde-cw-value = { workspace = true }
bech32 = { workspace = true }
cw-utils = { workspace = true }
itertools = { workspace = true }
enum-repr = { workspace = true }
prost = { workspace = true }
cw20 = "1.1.0"
ibc-tracking = { version = "1.2.0", path = "../../packages/ibc-tracking" }
shared = { version = "1.2.0", path = "../../packages/shared" }