-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathCargo.toml
38 lines (34 loc) · 1.49 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
[package]
name = "skip-go-ibc-adapter-ibc-callbacks"
version = { workspace = true }
rust-version = { workspace = true }
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
documentation = { workspace = true }
keywords = { workspace = true }
[lib]
crate-type = ["cdylib", "rlib"]
[features]
# use library feature to disable all instantiate/execute/query exports
library = []
[dependencies]
cosmwasm-schema = { version = "2.0.0" }
cosmwasm-std = { version = "2.0.0", features = ["stargate"] }
cw2 = { version = "2.0.0" }
cw-storage-plus = { version = "2.0.0" }
ibc-proto = { git = "https://github.com/NotJeremyLiu/ibc-proto-rs", branch = "jl/ftp-v1", default-features = false, features = ["std", "serde"]}
prost = { version = "0.13.5" }
ibc-eureka-solidity-types = {git = "https://github.com/cosmos/solidity-ibc-eureka", branch="serdar/309-callbacks-pkg"}
serde-json-wasm = { workspace = true }
serde-cw-value = { workspace = true }
skip2 = { workspace = true }
thiserror = { workspace = true }
alloy-sol-types = { version = "0.8", default-features = false, features=["json"]}
alloy-primitives = { version = "1.0.0" }
hex = { version = "0.4", default-features = false }
sha2 = { version = "0.10", default-features = false }
[dev-dependencies]
test-case = { workspace = true }