-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1.16 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
[package]
name = "polymarket-cli"
version = "0.1.0"
edition = "2024"
rust-version = "1.88.0"
description = "CLI for Polymarket — browse markets, trade, and manage positions"
license = "MIT"
repository = "https://github.com/Polymarket/polymarket-cli"
keywords = ["polymarket", "prediction-markets", "trading", "cli"]
categories = ["command-line-utilities"]
[[bin]]
name = "polymarket"
path = "src/main.rs"
[dependencies]
polymarket-client-sdk = { version = "0.4", features = ["gamma", "data", "bridge", "clob", "ctf"] }
alloy = { version = "1.6.3", default-features = false, features = ["providers", "sol-types", "contract", "reqwest", "reqwest-rustls-tls", "signer-local", "signers", "signer-keystore"] }
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
serde_json = "1"
serde = { version = "1", features = ["derive"] }
tabled = "0.17"
rust_decimal = "1"
anyhow = "1"
chrono = "0.4"
dirs = "6"
rustyline = "15"
rpassword = "7"
rand = "0.8"
secrecy = "0.10"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
rust_decimal_macros = "1"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
panic = "abort"