Cargo.toml 811 B

12345678910111213141516171819202122232425262728293031323334353637
  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. sha3 = "0.10.4"
  20. slow_primes = "0.1.14"
  21. thiserror = "1.0.40"
  22. [dev-dependencies]
  23. base64 = "0.21.0"
  24. rand = "0.7.0"
  25. serde_json = "1.0.96"
  26. solana-client = "=1.13.6"
  27. solana-sdk = "=1.13.6"
  28. proptest = "1.1.0"
  29. [package.metadata.docs.rs]
  30. targets = ["x86_64-unknown-linux-gnu"]
  31. [build-dependencies]
  32. rustc_version = "0.4"