forked from geminik23/quant-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 856 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 856 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 = "qs-data-preprocess"
version = "0.1.1"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Historical market data storage and preprocessing CLI"
keywords = ["market-data", "parquet", "preprocessing", "ohlcv"]
categories = ["finance"]
[lib]
name = "data_preprocess"
[[bin]]
name = "data-preprocess"
path = "src/main.rs"
[features]
default = ["parquet"]
parquet = ["dep:polars"]
duckdb-backend = ["dep:duckdb"]
[dependencies]
chrono = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
clap = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
csv = { workspace = true }
# Parquet backend (default)
polars = { workspace = true, optional = true }
# DuckDB backend (opt-in)
duckdb = { workspace = true, optional = true }