Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [package]
  2. name = "pyth-cosmwasm"
  3. version = "1.0.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. # IMPORTANT: if you want to build for injective, enable the default feature below
  11. # default=["injective"]
  12. backtraces = ["cosmwasm-std/backtraces"]
  13. # use library feature to disable all init/handle/query exports
  14. library = []
  15. injective = ["dep:serde_repr"]
  16. [dependencies]
  17. cosmwasm-std = { version = "1.0.0" }
  18. cosmwasm-storage = { version = "1.0.0" }
  19. schemars = "0.8.1"
  20. serde = { version = "1.0.103", default-features = false, features = ["derive"] }
  21. serde_derive = { version = "1.0.103"}
  22. serde_repr = { version="0.1", optional = true}
  23. terraswap = "2.4.0"
  24. wormhole-bridge-terra-2 = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.14.8", features = ["library"] }
  25. thiserror = { version = "1.0.20" }
  26. k256 = { version = "0.9.4", default-features = false, features = ["ecdsa"] }
  27. sha3 = { version = "0.9.1", default-features = false }
  28. generic-array = { version = "0.14.4" }
  29. hex = "0.4.2"
  30. lazy_static = "1.4.0"
  31. bigint = "4"
  32. pyth-wormhole-attester-sdk = { path = "../../../../wormhole_attester/sdk/rust" }
  33. pyth-sdk = "0.7.0"
  34. byteorder = "1.4.3"
  35. cosmwasm-schema = "1.1.9"
  36. pyth-sdk-cw = { path = "../../pyth-sdk-cw" }
  37. [dev-dependencies]
  38. cosmwasm-vm = { version = "1.0.0", default-features = false }
  39. serde_json = "1.0"