-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 782 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "polymarket-rtds"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "A Rust client for Polymarket's Real-Time Data Streaming WebSocket service"
homepage = "https://github.com/Rimantovas/polymarket-rtds"
repository = "https://github.com/Rimantovas/polymarket-rtds"
readme = "README.md"
keywords = ["polymarket", "websocket"]
[dependencies]
tokio = { version = "1.41", features = ["rt-multi-thread", "macros", "time", "sync"] }
tokio-tungstenite = { version = "0.28", features = ["native-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures-util = "0.3"
url = "2.5"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "crypto_price_monitor"
path = "examples/crypto_price_monitor.rs"