Cargo.toml 508 B

12345678910111213141516171819202122
  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. [dependencies]
  11. cosmwasm-std = { version = "1.0.0", features = ["ibc3"] }
  12. cosmwasm-schema = "1"
  13. cw-storage-plus = "0.13.2"
  14. anyhow = "1"
  15. semver = "1.0.16"
  16. thiserror = "1.0.31"
  17. wormhole-bindings = "0.1.0"
  18. wormhole-sdk = { workspace = true, features = ["schemars"] }
  19. serde_wormhole.workspace = true