Cargo.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [package]
  2. name = "pyth-solana-receiver"
  3. version = "0.1.0"
  4. description = "Created with Anchor"
  5. edition = "2021"
  6. [lib]
  7. crate-type = ["cdylib", "lib"]
  8. name = "pyth_solana_receiver"
  9. [features]
  10. no-entrypoint = []
  11. no-idl = []
  12. no-log-ix-name = []
  13. cpi = ["no-entrypoint"]
  14. default = []
  15. mainnet = ["wormhole-anchor-sdk/mainnet"]
  16. devnet = ["wormhole-anchor-sdk/solana-devnet"]
  17. test-bpf = []
  18. [dependencies]
  19. anchor-lang = "0.28.0"
  20. wormhole-core = { git = "https://github.com/guibescos/wormhole", branch = "reisen/sdk-solana"}
  21. wormhole-solana = { git = "https://github.com/guibescos/wormhole", branch = "reisen/sdk-solana"}
  22. pyth-wormhole-attester-sdk = { path = "../../../../wormhole_attester/sdk/rust" }
  23. pythnet-sdk = { git = "https://github.com/pyth-network/pyth-crosschain", version = "2.0.0", features = ["strum"] }
  24. solana-program = "1.16.20"
  25. hex = "0.4.3"
  26. serde = { version = "1.0.152", features = ["derive"] }
  27. byteorder = "1.4.3"
  28. wormhole-anchor-sdk = { version = "0.1.0-alpha.2" , default-features = false }
  29. sha3 = "0.10.6"
  30. wormhole-sdk = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.17.1" }
  31. serde_wormhole = { git = "https://github.com/wormhole-foundation/wormhole", tag = "v2.17.1"}
  32. [dev-dependencies]
  33. pyth-sdk = "0.8.0"
  34. pyth-sdk-solana = "0.8.0"
  35. solana-program-test = "1.16.20"
  36. solana-sdk = "1.16.20"
  37. tokio = "1.14.1"
  38. bincode = "1.3.3"
  39. libsecp256k1 = "0.7.1"
  40. rand = "0.8.5"
  41. lazy_static = "1.4.0"