Cargo.toml 849 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "pyth-hermes-client-rust"
  3. version = "0.0.1"
  4. edition = "2021"
  5. description = "A Rust client for Pyth Hermes"
  6. license = "Apache-2.0"
  7. [dependencies]
  8. pyth-sdk = { version = "0.8.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. anyhow = "1.0"
  15. tracing = "0.1"
  16. url = "2.4"
  17. derive_more = { version = "1.0.0", features = ["from"] }
  18. backoff = { version = "0.4.0", features = ["futures", "tokio"] }
  19. ttl_cache = "0.5.1"
  20. [dev-dependencies]
  21. bincode = "1.3.3"
  22. ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
  23. hex = "0.4.3"
  24. libsecp256k1 = "0.7.1"
  25. bs58 = "0.5.1"
  26. alloy-primitives = "0.8.19"
  27. tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }