| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- [package]
- name = "pythnet-sdk"
- version = "2.0.0"
- description = "Pyth Runtime for Solana"
- authors = ["Pyth Data Association"]
- repository = "https://github.com/pyth-network/pythnet"
- edition = "2021"
- [lib]
- crate-type = ["lib"]
- name = "pythnet_sdk"
- [features]
- test-utils = ["dep:wormhole-sdk", "dep:serde_wormhole"]
- [dependencies]
- bincode = "1.3.1"
- borsh = "0.10.3"
- bytemuck = { version = "1.11.0", features = ["derive"] }
- byteorder = "1.4.3"
- fast-math = "0.1"
- hex = { version = "0.4.3", features = ["serde"] }
- serde = { version = "1.0.144", features = ["derive"] }
- strum = { version = "0.24.1", features = ["derive"], optional = true }
- quickcheck = { version = "1", optional = true}
- sha3 = "0.10.4"
- slow_primes = "0.1.14"
- thiserror = "1.0.40"
- serde_wormhole = { git = "https://github.com/wormhole-foundation/wormhole", optional = true, tag="rust-sdk-2024-01-25"}
- wormhole-sdk = { git = "https://github.com/wormhole-foundation/wormhole", optional = true, tag="rust-sdk-2024-01-25"}
- [dev-dependencies]
- base64 = "0.21.0"
- rand = "0.7.0"
- serde_json = "1.0.96"
- solana-client = "=1.13.6"
- solana-sdk = "=1.13.6"
- proptest = "1.1.0"
- [package.metadata.docs.rs]
- targets = ["x86_64-unknown-linux-gnu"]
- [build-dependencies]
- rustc_version = "0.4"
|