Cargo.toml 728 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "pyth-lazer-client"
  3. version = "0.1.3"
  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.9.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. [dev-dependencies]
  20. bincode = "1.3.3"
  21. ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
  22. hex = "0.4.3"
  23. libsecp256k1 = "0.7.1"
  24. bs58 = "0.5.1"
  25. alloy-primitives = "0.8.19"