-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 1011 Bytes
/
Cargo.toml
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
[package]
name = "polymarket-rs-client"
description = "An async client to interact with polymarket."
repository = "https://github.com/TechieBoy/polymarket-rs-client"
readme = "README.md"
license = "Apache-2.0"
version = "0.1.1"
edition = "2021"
[dependencies]
alloy-primitives = "0.8.12"
alloy-sol-types = { version = "0.8.12", features = ["eip712-serde", "json"] }
ureq = { version = "2.10.1", features = ["json", "charset"] }
alloy-signer-local = { version = "0.7.2", features = ["eip712"] }
alloy-signer = { version = "0.7.2", features = ["eip712"] }
base64 = "0.22.1"
hmac = "0.12.1"
sha2 = "0.10.8"
anyhow = "1.0.93"
serde = "1.0.215"
serde_json = "1.0.133"
reqwest = { version = "0.12.9", features = ["json"] }
rust_decimal = { version = "1.36.0", features = ["serde-with-str"] }
rand = "0.8.5"
serde-json-fmt = "0.1.0"
sha1 = "0.10.6"
[dev-dependencies]
tokio = { version = "1.41.1", features = ["rt", "macros"] }
# Faster builds
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3