39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "polypulse"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
default-run = "polypulse"
|
|
|
|
[dependencies]
|
|
polymarket-client-sdk = { version = "0.4.1", features = ["clob", "ctf", "data", "gamma", "ws", "tracing"] }
|
|
polymarket-client-sdk-v2 = { package = "polymarket_client_sdk_v2", version = "0.6.0-canary.1", features = ["clob"] }
|
|
tokio = { version = "1.49", features = ["full"] }
|
|
anyhow = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
rustls = { version = "0.23", features = ["ring"] }
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
base64 = "0.22"
|
|
rust_decimal = "1.39"
|
|
rust_decimal_macros = "1.39"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
dotenvy = "0.15"
|
|
text-pad-core = "0.1"
|
|
alloy = { version = "1.3", default-features = false, features = [
|
|
"signer-local",
|
|
"signers",
|
|
"reqwest",
|
|
"reqwest-rustls-tls",
|
|
"providers",
|
|
"contract",
|
|
] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
dashmap = "6.1"
|
|
futures = "0.3"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
ratatui = "0.29"
|
|
crossterm = "0.28"
|
|
rand = "0.8" |