-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
60 lines (56 loc) · 1.28 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "cosmwasm-client-rs"
version = "0.1.0"
edition = "2021"
[[example]]
name = "contract_operations"
path = "examples/contract_operations.rs"
[[example]]
name = "event_listener"
path = "examples/event_listener.rs"
[dependencies]
tokio = { version = "1.41.1", features = ["full"] }
futures = "0.3"
futures-util = "0.3"
async-trait = "0.1"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
cosmos-sdk-proto = { version = "0.26.0" }
prost = "0.13.3"
prost-types = "0.13.3"
tendermint = "0.40.0"
tendermint-rpc = { version = "0.40.0", features = [
"http-client",
"websocket-client",
] }
url = "2.4"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
cosmrs = { version = "0.21.0", features = ["cosmwasm"] }
base64 = "0.21.2"
bytes = "1.4.0"
tokio-stream = "0.1.14"
tokio-util = "0.7.8"
tonic = { version = "0.12.3", features = [
"default",
"prost",
"tls",
"tls-roots",
"tls-webpki-roots",
] }
hex = "0.4.3"
cosmwasm-std = { version = "2.1.4", default-features = false, features = [
"std",
"abort",
"staking",
"stargate",
"cosmwasm_2_0",
] }
cosmwasm-schema = "2.1.4"
sha2 = "0.10.6"
cw20 = "2.0.0"
dotenv = "0.15.0"
[build-dependencies]
tonic-build = { version = "0.12.3", features = ["default", "prost"] }