-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (42 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
53 lines (42 loc) · 1.18 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
[package]
name = "phantomfill"
version = "0.1.0"
edition = "2021"
description = "The honest prediction market backtester. See what would ACTUALLY happen — with realistic fill simulation, queue position modeling, and adverse selection."
license = "MIT"
repository = "https://github.com/dapdevsoftware/phantomfill"
keywords = ["polymarket", "prediction-market", "backtesting", "simulation", "trading"]
categories = ["simulation", "finance"]
[dependencies]
# Core
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
thiserror = "2"
chrono = { version = "0.4", features = ["serde"] }
# CLI
clap = { version = "4", features = ["derive"] }
# Data
rusqlite = { version = "0.33", features = ["bundled"] }
csv = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Stats
rand = "0.8"
# Scripting
rhai = { version = "1", features = ["sync"] }
# HTTP (for Binance kline fetch)
ureq = { version = "2", features = ["json"] }
# Temp files (for tests)
[dev-dependencies]
tempfile = "3"
[[bin]]
name = "pf"
path = "src/bin/pf.rs"
[[bin]]
name = "pf-hf-import"
path = "src/bin/hf_import.rs"
[lib]
name = "phantomfill"
path = "src/lib.rs"