[package]
edition = "2021"
name = "tickparse"
version = "0.1.0"
authors = ["Himanshu <hyattherate2005@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Blazing-fast streaming CSV parser for financial tick data — mmap, zero-copy, parallel"
homepage = "https://github.com/Himasnhu-AT/tickparse/blob/master/README.md"
readme = "README.md"
keywords = [
"csv",
"parser",
"trading",
"backtesting",
"finance",
]
categories = [
"parsing",
"finance",
"concurrency",
"command-line-utilities",
]
license-file = "LICENSE"
repository = "https://github.com/Himasnhu-AT/tickparse.git"
[lib]
name = "tickparse"
path = "src/lib.rs"
[[bin]]
name = "bench"
path = "bench/bench.rs"
[[bin]]
name = "tickparse"
path = "src/main.rs"
[[example]]
name = "example"
path = "examples/example.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.csv]
version = "1.3"
[dependencies.indicatif]
version = "0.17"
[dependencies.memmap2]
version = "0.9"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.sysinfo]
version = "0.33"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1