Cargo.toml 929 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "pythnet-sdk"
  3. version = "1.13.6"
  4. description = "Pyth Runtime for Solana"
  5. authors = ["Pyth Data Association"]
  6. repository = "https://github.com/pyth-network/pythnet"
  7. edition = "2021"
  8. [lib]
  9. crate-type = ["lib"]
  10. name = "pythnet_sdk"
  11. [dependencies]
  12. bincode = "1.3.1"
  13. borsh = "0.9.1"
  14. bytemuck = { version = "1.11.0", features = ["derive"] }
  15. byteorder = "1.4.3"
  16. fast-math = "0.1"
  17. hex = { version = "0.4.3", features = ["serde"] }
  18. serde = { version = "1.0.144", features = ["derive"] }
  19. strum = { version = "0.24.1", features = ["derive"], optional = true }
  20. quickcheck = { version = "1", optional = true}
  21. sha3 = "0.10.4"
  22. slow_primes = "0.1.14"
  23. thiserror = "1.0.40"
  24. [dev-dependencies]
  25. base64 = "0.21.0"
  26. rand = "0.7.0"
  27. serde_json = "1.0.96"
  28. solana-client = "=1.13.6"
  29. solana-sdk = "=1.13.6"
  30. proptest = "1.1.0"
  31. [package.metadata.docs.rs]
  32. targets = ["x86_64-unknown-linux-gnu"]
  33. [build-dependencies]
  34. rustc_version = "0.4"