Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "pyth-cosmwasm"
  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 = "1.0.0" }
  15. cosmwasm-storage = { version = "1.0.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. terraswap = "2.4.0"
  20. wormhole-bridge-terra-2 = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.8.9", features = ["library"] }
  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. pyth-wormhole-attester-sdk = { path = "../../../../wormhole_attester/sdk/rust" }
  29. pyth-sdk = "0.7.0"
  30. byteorder = "1.4.3"
  31. cosmwasm-schema = "1.1.9"
  32. [dev-dependencies]
  33. cosmwasm-vm = { version = "1.0.0", default-features = false }
  34. serde_json = "1.0"