-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (69 loc) · 2.23 KB
/
Cargo.toml
File metadata and controls
77 lines (69 loc) · 2.23 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
72
73
74
75
76
77
[package]
name = "optopsy-mcp"
version = "0.1.0"
edition = "2021"
description = "Options backtesting engine exposed as an MCP server"
default-run = "optopsy-mcp"
[dependencies]
rmcp = { version = "0.17", features = ["server", "transport-io", "transport-streamable-http-server", "macros"] }
axum = "0.8"
polars = { version = "0.53", features = ["lazy", "parquet", "dtype-date", "dtype-datetime", "dtype-struct", "round_series", "is_in", "cum_agg", "rolling_window", "abs", "cross_join", "ewma"] }
chrono = { version = "0.4", features = ["serde"] }
dashmap = "6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
schemars = "1"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
thiserror = "2"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
rust_ti = "2.2"
garde = { version = "0.22", features = ["derive", "regex"] }
rand = "0.9"
ordered-float = "4"
rustc-hash = "2"
async-trait = "0.1"
statrs = "0.18"
nalgebra = { version = "0.33", default-features = false, features = ["std"] }
rhai = { version = "1", features = ["sync"] }
dotenvy = "0.15"
rusqlite = { version = "0.35", features = ["bundled"] }
uuid = { version = "1", features = ["v4"] }
tower-http = { version = "0.6", features = ["cors"] }
futures = "0.3"
tokio-stream = "0.1"
toml = "0.8"
refinery = { version = "0.9.0", features = ["rusqlite"] }
zip = "2"
rayon = "1.10"
indicatif = "0.17"
[[bin]]
name = "convert-options"
path = "src/bin/convert_options.rs"
[[bin]]
name = "convert-ohlcv"
path = "src/bin/convert_ohlcv.rs"
[[bin]]
name = "merge-updates"
path = "src/bin/merge_updates.rs"
[[bin]]
name = "gen-adjustment-migration"
path = "src/bin/gen_adjustment_migration.rs"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
module_name_repetitions = "allow"
must_use_candidate = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
# Controlled numeric casts throughout (day counts, indices, etc.)
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
[dev-dependencies]
tempfile = "3.26.0"
rmcp = { version = "0.17", features = ["client", "transport-async-rw"] }
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"