-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (48 loc) · 1.15 KB
/
Copy pathCargo.toml
File metadata and controls
58 lines (48 loc) · 1.15 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
[package]
name = "fondaco"
version = "0.1.0"
edition = "2021"
description = "Open-source trading framework for binary outcome markets"
license = "Apache-2.0"
repository = "https://github.com/RomneyDa/fondaco"
[[bin]]
name = "backtest"
path = "src/bin/backtest.rs"
[[bin]]
name = "collector"
path = "src/bin/collector.rs"
[[bin]]
name = "bot-worker"
path = "src/bin/bot_worker.rs"
[[bin]]
name = "orchestrator"
path = "src/bin/orchestrator.rs"
[[bin]]
name = "sports-collector"
path = "src/bin/sports_collector.rs"
[[bin]]
name = "sports-backtest"
path = "src/bin/sports_backtest.rs"
[[bin]]
name = "sports-bot-worker"
path = "src/bin/sports_bot_worker.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
clap = { version = "4", features = ["derive"] }
rayon = "1"
glob = "0.3"
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.12", features = ["json", "blocking"] }
tungstenite = { version = "0.24", features = ["native-tls"] }
native-tls = "0.2"
url = "2"
log = "0.4"
env_logger = "0.11"
ctrlc = "3"
signal-hook = "0.3"
tiny_http = "0.12"
notify-rust = "4"
[dev-dependencies]
approx = "0.5"
tempfile = "3"