-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (37 loc) · 1.45 KB
/
Cargo.toml
File metadata and controls
38 lines (37 loc) · 1.45 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
[package]
name = "fintool"
version = "0.1.2"
edition = "2021"
description = "Agentic trading CLI for crypto and stocks — spot/perp/options on Hyperliquid, Unit, Binance, and Coinbase"
license = "MIT"
repository = "https://github.com/second-state/fintool"
homepage = "https://github.com/second-state/fintool"
[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"] }