-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 891 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 891 Bytes
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
[package]
name = "greed"
description = "A rust tool to automate trades 📈"
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/ncipollo/greed"
version = "0.5.2"
exclude = ["fixtures/"]
[dependencies]
apca = "0.30.0"
approx = "0.5.1"
async-trait = "0.1.74"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.47", features = ["derive", "string"] }
clap_complete_command = "0.6.1"
csv = "1.3.0"
itertools = "0.14.0"
log = "0.4.20"
num-decimal = {version = "0.2.5", default-features = false, features = ["num-v04", "serde"]}
once_cell = "1.18.0"
reqwest = "0.13.2"
rig-core = "0.33.0"
schemars = "1.2.1"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
simplelog = { version = "0.12.1", features = ["local-offset"] }
tokio = { version = "1.33.0", features = ["full"] }
toml = "0.9.5"
uuid = "1.5.0"