2023-05-04 10:47:35 -07:00
|
|
|
[package]
|
2023-05-05 13:04:49 -07:00
|
|
|
name = "pythnet-sdk"
|
2023-05-04 10:47:35 -07:00
|
|
|
version = "1.13.6"
|
|
|
|
description = "Pyth Runtime for Solana"
|
|
|
|
authors = ["Pyth Data Association"]
|
|
|
|
repository = "https://github.com/pyth-network/pythnet"
|
|
|
|
edition = "2021"
|
|
|
|
|
2023-05-05 13:04:49 -07:00
|
|
|
[lib]
|
|
|
|
crate-type = ["lib"]
|
|
|
|
name = "solana_pyth"
|
|
|
|
|
2023-05-04 10:47:35 -07:00
|
|
|
[dependencies]
|
|
|
|
bincode = "1.3.1"
|
2023-05-05 13:04:49 -07:00
|
|
|
borsh = "0.9.1"
|
2023-05-04 10:47:35 -07:00
|
|
|
bytemuck = { version = "1.11.0", features = ["derive"] }
|
|
|
|
fast-math = "0.1"
|
|
|
|
hex = { version = "0.4.3", features = ["serde"] }
|
|
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
2023-05-05 13:04:49 -07:00
|
|
|
serde_wormhole = { git = "https://github.com/wormhole-foundation/wormhole" }
|
2023-05-04 10:47:35 -07:00
|
|
|
sha3 = "0.10.4"
|
|
|
|
slow_primes = "0.1.14"
|
2023-05-05 13:04:49 -07:00
|
|
|
wormhole-sdk = { git = "https://github.com/wormhole-foundation/wormhole" }
|
2023-05-04 10:47:35 -07:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-05-05 13:04:49 -07:00
|
|
|
base64 = "0.21.0"
|
2023-05-04 10:47:35 -07:00
|
|
|
rand = "0.7.0"
|
2023-05-05 13:04:49 -07:00
|
|
|
serde_json = "1.0.96"
|
|
|
|
solana-client = { path = "../client" }
|
|
|
|
solana-sdk = { path = "../sdk" }
|
|
|
|
proptest = "1.1.0"
|
2023-05-04 10:47:35 -07:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
rustc_version = "0.4"
|
2023-05-05 13:04:49 -07:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
serde_wormhole = { git = "https://github.com/wormhole-foundation/wormhole" }
|