Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [package]
  2. name = "pyth-lazer-client"
  3. version = "9.0.0"
  4. edition = "2021"
  5. description = "A Rust client for Pyth Lazer"
  6. license = "Apache-2.0"
  7. [dependencies]
  8. pyth-lazer-protocol = { path = "../protocol", version = "0.20.1" }
  9. pyth-lazer-publisher-sdk = { path = "../../../publisher_sdk/rust", version = "0.20.1" }
  10. tokio = { version = "1", features = ["full"] }
  11. tokio-stream = "0.1.17"
  12. tokio-tungstenite = { version = "0.20", features = ["native-tls"] }
  13. futures-util = "0.3"
  14. serde = { version = "1.0", features = ["derive"] }
  15. serde_json = "1.0"
  16. base64 = "0.22.1"
  17. anyhow = "1.0"
  18. tracing = "0.1"
  19. url = { version = "2.4", features = ["serde"] }
  20. derive_more = { version = "1.0.0", features = ["from"] }
  21. backoff = { version = "0.4.0", features = ["futures", "tokio"] }
  22. ttl_cache = "0.5.1"
  23. reqwest = { version = "0.12.23", features = ["json"] }
  24. arc-swap = "1.7.1"
  25. futures = "0.3.31"
  26. humantime-serde = "1.1.1"
  27. fs-err = "3.1.1"
  28. atomicwrites = "0.4.4"
  29. protobuf-json-mapping = "3.7.2"
  30. serde_with = "3.15.1"
  31. async-trait = "0.1.89"
  32. [dev-dependencies]
  33. bincode = "1.3.3"
  34. ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
  35. hex = "0.4.3"
  36. libsecp256k1 = "0.7.1"
  37. bs58 = "0.5.1"
  38. alloy-primitives = "0.8.19"
  39. tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }