Cargo.toml 894 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "pyth-lazer-client"
  3. version = "6.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.14.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 = "2.4"
  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. [dev-dependencies]
  22. bincode = "1.3.3"
  23. ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
  24. hex = "0.4.3"
  25. libsecp256k1 = "0.7.1"
  26. bs58 = "0.5.1"
  27. alloy-primitives = "0.8.19"
  28. tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }