| 123456789101112131415161718192021222324252627 |
- [package]
- name = "pyth-lazer-client"
- version = "0.1.3"
- edition = "2021"
- description = "A Rust client for Pyth Lazer"
- license = "Apache-2.0"
- [dependencies]
- pyth-lazer-protocol = { path = "../protocol", version = "0.9.0" }
- tokio = { version = "1", features = ["full"] }
- tokio-tungstenite = { version = "0.20", features = ["native-tls"] }
- futures-util = "0.3"
- serde = { version = "1.0", features = ["derive"] }
- serde_json = "1.0"
- base64 = "0.22.1"
- anyhow = "1.0"
- tracing = "0.1"
- url = "2.4"
- derive_more = { version = "1.0.0", features = ["from"] }
- [dev-dependencies]
- bincode = "1.3.3"
- ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
- hex = "0.4.3"
- libsecp256k1 = "0.7.1"
- bs58 = "0.5.1"
- alloy-primitives = "0.8.19"
|