Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "wormhole"
  3. version = "0.1.0"
  4. authors = ["Yuriy Savchenko <yuriy.savchenko@gmail.com>"]
  5. edition = "2018"
  6. description = "Wormhole contract"
  7. [lib]
  8. crate-type = ["cdylib", "rlib"]
  9. [features]
  10. backtraces = ["cosmwasm-std/backtraces"]
  11. # use library feature to disable all init/handle/query exports
  12. library = []
  13. [dependencies]
  14. cosmwasm-std = { version = "0.16.0" }
  15. cosmwasm-storage = { version = "0.16.0" }
  16. schemars = "0.8.1"
  17. serde = { version = "1.0.103", default-features = false, features = ["derive"] }
  18. cw20 = "0.8.0"
  19. cw20-base = { version = "0.8.0", features = ["library"] }
  20. cw20-wrapped = { path = "../cw20-wrapped", features = ["library"] }
  21. thiserror = { version = "1.0.20" }
  22. k256 = { version = "0.9.4", default-features = false, features = ["ecdsa"] }
  23. getrandom = { version = "0.2", features = ["custom"] }
  24. sha3 = { version = "0.9.1", default-features = false }
  25. generic-array = { version = "0.14.4" }
  26. hex = "0.4.2"
  27. lazy_static = "1.4.0"
  28. [dev-dependencies]
  29. cosmwasm-vm = { version = "0.16.0", default-features = false }
  30. serde_json = "1.0"