-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (62 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
71 lines (62 loc) · 1.91 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "fintool"
version = "0.1.6"
edition = "2021"
description = "Agentic trading CLIs for crypto, stocks, and prediction markets — Hyperliquid, Binance, Coinbase, OKX, and Polymarket"
license = "MIT"
repository = "https://github.com/second-state/fintool"
homepage = "https://github.com/second-state/fintool"
[lib]
name = "fintool_lib"
path = "src/lib.rs"
[[bin]]
name = "fintool"
path = "src/bin/fintool.rs"
[[bin]]
name = "hyperliquid"
path = "src/bin/hyperliquid.rs"
[[bin]]
name = "binance"
path = "src/bin/binance.rs"
[[bin]]
name = "coinbase"
path = "src/bin/coinbase.rs"
[[bin]]
name = "polymarket"
path = "src/bin/polymarket.rs"
[[bin]]
name = "okx"
path = "src/bin/okx.rs"
[[bin]]
name = "backtest"
path = "src/bin/backtest.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
rust_decimal = { version = "1", features = ["serde-with-str"] }
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1"
colored = "2"
tabled = "0.17"
hex = "0.4"
k256 = { version = "0.13", features = ["ecdsa"] }
sha3 = "0.10"
toml = "0.8"
dirs = "6"
shellexpand = "3"
eth-keystore = "0.5"
hyperliquid_rust_sdk = { version = "0.6", default-features = false }
ethers = { version = "2", default-features = false, features = ["rustls", "eip712", "abigen", "legacy"] }
urlencoding = "2"
polymarket-client-sdk = { version = "0.4", features = ["gamma", "data", "clob", "bridge", "ctf"] }
alloy = { version = "1.6", default-features = false, features = ["providers", "sol-types", "contract", "reqwest", "reqwest-rustls-tls", "signer-local", "signers"] }
regex = "1"
openssl = { version = "0.10", features = ["vendored"] }
hmac = "0.12"
rmp-serde = "1"
sha2 = "0.10"
uuid = { version = "1", features = ["v4"] }
base64 = "0.22"