Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "token-bridge"
  3. version = "0.1.0"
  4. authors = ["Yuriy Savchenko <yuriy.savchenko@gmail.com>"]
  5. edition = "2018"
  6. description = "Wormhole token bridge"
  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. terraswap = "2.4.0"
  22. wormhole-bridge-terra = { path = "../wormhole", features = ["library"] }
  23. thiserror = { version = "1.0.20" }
  24. k256 = { version = "0.9.4", default-features = false, features = ["ecdsa"] }
  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. bigint = "4"
  30. [dev-dependencies]
  31. cosmwasm-vm = { version = "0.16.0", default-features = false }
  32. serde_json = "1.0"