Cargo.toml 730 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "wormchain-ibc-receiver"
  3. version = "0.1.0"
  4. authors = ["Wormhole Project Contributors"]
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "rlib"]
  8. [features]
  9. backtraces = ["cosmwasm-std/backtraces"]
  10. library = []
  11. [dependencies]
  12. cosmwasm-std = { version = "1.0.0", features = ["ibc3"] }
  13. cosmwasm-schema = "1"
  14. cw-storage-plus = "0.13.2"
  15. anyhow = "1"
  16. semver = "1.0.16"
  17. thiserror = "1.0.31"
  18. wormhole-bindings = "0.1.0"
  19. wormhole-sdk = { workspace = true, features = ["schemars"] }
  20. serde_wormhole.workspace = true
  21. [dev-dependencies]
  22. cw-multi-test = "0.14"
  23. serde-json-wasm = "0.4"
  24. wormhole-bindings = { version = "0.1.0", features=["fake"] }
  25. serde = { version = "1.0.137", default-features = false, features = ["derive"] }