| 1234567891011121314151617181920212223242526272829 |
- [package]
- name = "wormchain-ibc-receiver"
- version = "0.1.0"
- authors = ["Wormhole Project Contributors"]
- edition = "2021"
- [lib]
- crate-type = ["cdylib", "rlib"]
- [features]
- backtraces = ["cosmwasm-std/backtraces"]
- library = []
- [dependencies]
- cosmwasm-std = { version = "1.0.0", features = ["ibc3"] }
- cosmwasm-schema = "1"
- cw-storage-plus = "0.13.2"
- anyhow = "1"
- semver = "1.0.16"
- thiserror = "1.0.31"
- wormhole-bindings = "0.1.0"
- wormhole-sdk = { workspace = true, features = ["schemars"] }
- serde_wormhole.workspace = true
- [dev-dependencies]
- cw-multi-test = "0.14"
- serde-json-wasm = "0.4"
- wormhole-bindings = { version = "0.1.0", features=["fake"] }
- serde = { version = "1.0.137", default-features = false, features = ["derive"] }
|