[package]
edition = "2024"
rust-version = "1.90"
name = "qmt-parser"
version = "0.1.0"
authors = ["sunnysab <i@sunnysab.cn>"]
build = false
include = [
"Cargo.toml",
"README.md",
"LICENSE",
"src/**/*.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust parser for MiniQMT/QMT local market data, finance files, and dividend metadata."
homepage = "https://github.com/sunnysab/qmt-parser"
documentation = "https://docs.rs/qmt-parser"
readme = "README.md"
keywords = [
"qmt",
"quant",
"parser",
"market-data",
"polars",
]
categories = [
"parser-implementations",
"encoding",
"science",
]
license = "GPL-3.0-only"
repository = "https://github.com/sunnysab/qmt-parser"
[features]
default = ["polars"]
polars = ["dep:polars"]
[lib]
name = "qmt_parser"
path = "src/lib.rs"
[dependencies.byteorder]
version = "1.5"
[dependencies.chrono]
version = "0.4.42"
[dependencies.memmap2]
version = "0.9.9"
[dependencies.polars]
version = "0.52"
features = [
"lazy",
"timezones",
]
optional = true
[dependencies.rusty-leveldb]
version = "1.0"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"