-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (34 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
36 lines (34 loc) · 922 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
34
35
36
[package]
name = "orcast"
version = "0.2.0"
edition = "2024"
description = "OHLCV-driven options ticker screener (Rust). Fetch daily bars; rank tickers per strategy category."
authors = ["Orcast Contributors"]
license = "MIT"
repository = "https://github.com/rustic-ml/Orcast"
readme = "README.md"
keywords = ["ohlcv", "screener", "options", "rust"]
categories = ["algorithms", "development-tools"]
exclude = [
"docs/**",
"examples/**",
"tests/**",
"target/**",
".github/**",
".idea/**",
".vscode/**",
"scripts/**",
"images/**",
"Cargo.lock",
".gitignore",
"*.orig",
]
[dependencies]
thiserror = "1"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
csv = "1"
[dev-dependencies]
httpmock = "0.7"