-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
44 lines (39 loc) · 1.43 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "poly-clob-rs"
version = "0.1.0"
edition = "2021"
authors = ["Florent <FlorentG74@proton.me>"]
description = "A Rust client library for the Polymarket CLOB (Central Limit Order Book) API"
license = "MIT OR Apache-2.0"
repository = "https://github.com/FlorentG74/poly-clob-rs"
homepage = "https://github.com/FlorentG74/poly-clob-rs"
documentation = "https://docs.rs/poly-clob-rs"
readme = "README.md"
keywords = ["polymarket", "prediction-markets", "clob", "api", "blockchain"]
categories = ["api-bindings", "web-programming::http-client", "cryptography::cryptocurrencies"]
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
chrono = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }
rust_decimal = { workspace = true }
futures-executor = { workspace = true }
alloy = { workspace = true, features = ["dyn-abi", "signer-local"] }
reqwest = { version = "0.12.28", features = ["rustls-tls", "json"] }
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread"] }
dotenv = "0.15.0"
hex = { version = "0.4.3" }
sha2 = { version = "0.10.9" }
hmac = "0.12.1"
base64 = { version = "0.22.1" }
strum_macros = "0.27.2"
typed-builder = "0.23"
diesel = { version = "2.3.5", features = ["postgres"], optional = true }
[dev-dependencies]
env_logger = "0.11"
[features]
default = []
with-diesel = ["diesel"]
# [package.metadata.cargo-machete]
# ignored = ["strum"]