Cargo.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. p2w-sdk = { path = "../../../third_party/pyth/p2w-sdk/rust" }
  32. solana-program = "=1.8.16"
  33. pyth-sdk = { version = "0.2.0" }
  34. [dev-dependencies]
  35. cosmwasm-vm = { version = "0.16.0", default-features = false }
  36. serde_json = "1.0"