Cargo.toml 1.1 KB

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