Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "pyth-bridge"
  3. version = "0.1.0"
  4. authors = ["Wormhole Contributors <contact@certus.one>"]
  5. edition = "2018"
  6. description = "Pyth price receiver"
  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. serde_derive = { version = "1.0.103"}
  19. cw20 = "0.8.0"
  20. cw20-base = { version = "0.8.0", features = ["library"] }
  21. cw20-wrapped = { path = "../cw20-wrapped", features = ["library"] }
  22. terraswap = "2.4.0"
  23. wormhole-bridge-terra = { path = "../wormhole", features = ["library"] }
  24. thiserror = { version = "1.0.20" }
  25. k256 = { version = "0.9.4", default-features = false, features = ["ecdsa"] }
  26. sha3 = { version = "0.9.1", default-features = false }
  27. generic-array = { version = "0.14.4" }
  28. hex = "0.4.2"
  29. lazy_static = "1.4.0"
  30. bigint = "4"
  31. pyth-client = {git = "https://github.com/pyth-network/pyth-client-rs", branch = "v2"}
  32. solana-program = "=1.7.0"
  33. [dev-dependencies]
  34. cosmwasm-vm = { version = "0.16.0", default-features = false }
  35. serde_json = "1.0"