qs-data-preprocess 0.1.1

Historical market data storage and preprocessing CLI
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "qs-data-preprocess"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Historical market data storage and preprocessing CLI"
readme = "README.md"
keywords = [
    "market-data",
    "parquet",
    "preprocessing",
    "ohlcv",
]
categories = ["finance"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/geminik23/quant-system"

[features]
default = ["parquet"]
duckdb-backend = ["dep:duckdb"]
parquet = ["dep:polars"]

[lib]
name = "data_preprocess"
path = "src/lib.rs"

[[bin]]
name = "data-preprocess"
path = "src/main.rs"

[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.5"
features = [
    "derive",
    "env",
]

[dependencies.csv]
version = "1.3"

[dependencies.duckdb]
version = "1.2"
features = ["bundled"]
optional = true

[dependencies.polars]
version = "0.46"
features = [
    "parquet",
    "lazy",
    "dtype-datetime",
]
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"