Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "mock-bridge-integration"
  3. version = "0.1.0"
  4. edition = "2018"
  5. description = "Mock Bridge Integration for Transfer w/ Payload"
  6. [lib]
  7. crate-type = ["cdylib", "rlib"]
  8. [features]
  9. backtraces = ["cosmwasm-std/backtraces"]
  10. # use library feature to disable all init/handle/query exports
  11. library = []
  12. [dependencies]
  13. cosmwasm-std = { version = "0.16.0" }
  14. cosmwasm-storage = { version = "0.16.0" }
  15. schemars = "0.8.1"
  16. serde = { version = "1.0.103", default-features = false, features = ["derive"] }
  17. cw20 = "0.8.0"
  18. cw20-base = { version = "0.8.0", features = ["library"] }
  19. cw20-wrapped = { path = "../cw20-wrapped", features = ["library"] }
  20. terraswap = "2.4.0"
  21. thiserror = { version = "1.0.20" }
  22. k256 = { version = "0.9.4", default-features = false, features = ["ecdsa"] }
  23. sha3 = { version = "0.9.1", default-features = false }
  24. generic-array = { version = "0.14.4" }
  25. hex = "0.4.2"
  26. lazy_static = "1.4.0"
  27. bigint = "4"
  28. wormhole-bridge-terra = { path = "../wormhole", features = ["library"] }
  29. token-bridge-terra = { path = "../token-bridge", features = ["library"] }
  30. [dev-dependencies]
  31. cosmwasm-vm = { version = "0.16.0", default-features = false }
  32. serde_json = "1.0"