-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (21 loc) · 750 Bytes
/
Cargo.toml
File metadata and controls
22 lines (21 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "simple_pyth_client_rs"
version = "0.1.0"
authors = ["Joshthebuilda <https://joshuaokechukwu.vzy.io/>"]
edition = "2024"
description = "Rust wrapper for Pyth Hermes crypto price feeds"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Parallax18/simple-pyth-client"
keywords = ["pyth", "crypto", "price", "stream", "sdk"]
categories = ["api-bindings", "cryptography", "command-line-utilities"]
documentation = "https://docs.rs/simple_pyth_client_rs"
[dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json", "stream"] }
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
tokio-stream = "0.1"
once_cell = "1.18"
anyhow = "1.0"