Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [package]
  2. name = "pyth-lazer-client"
  3. version = "8.6.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.0" }
  9. tokio = { version = "1", features = ["full"] }
  10. tokio-tungstenite = { version = "0.20", features = ["native-tls"] }
  11. futures-util = "0.3"
  12. serde = { version = "1.0", features = ["derive"] }
  13. serde_json = "1.0"
  14. base64 = "0.22.1"
  15. anyhow = "1.0"
  16. tracing = "0.1"
  17. url = { version = "2.4", features = ["serde"] }
  18. derive_more = { version = "1.0.0", features = ["from"] }
  19. backoff = { version = "0.4.0", features = ["futures", "tokio"] }
  20. ttl_cache = "0.5.1"
  21. reqwest = { version = "0.12.23", features = ["json"] }
  22. arc-swap = "1.7.1"
  23. futures = "0.3.31"
  24. humantime-serde = "1.1.1"
  25. fs-err = "3.1.1"
  26. atomicwrites = "0.4.4"
  27. [dev-dependencies]
  28. bincode = "1.3.3"
  29. ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
  30. hex = "0.4.3"
  31. libsecp256k1 = "0.7.1"
  32. bs58 = "0.5.1"
  33. alloy-primitives = "0.8.19"
  34. tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }