tickparse 0.1.0

Blazing-fast streaming CSV parser for financial tick data — mmap, zero-copy, parallel
Documentation
[package]
name = "tickparse"
description = "Blazing-fast streaming CSV parser for financial tick data — mmap, zero-copy, parallel"
version = "0.1.0"
edition = "2021"
authors = ["Himanshu <hyattherate2005@gmail.com>"]
homepage = "https://github.com/Himasnhu-AT/tickparse/blob/master/README.md"
readme = "README.md"
repository = "https://github.com/Himasnhu-AT/tickparse.git"
keywords = ["csv", "parser", "trading", "backtesting", "finance"]
categories = ["parsing", "finance", "concurrency", "command-line-utilities"]
license-file = "LICENSE"

[[bin]]
name = "tickparse"
path = "src/main.rs"

[[bin]]
name = "bench"
path = "bench/bench.rs"

[[example]]
name = "example"
path = "examples/example.rs"

[dependencies]
csv = "1.3"
serde = { version = "1", features = ["derive"] }
memmap2 = "0.9"
rayon = "1.10"
indicatif = "0.17"
clap = { version = "4", features = ["derive"] }
sysinfo = "0.33"

[profile.release]
opt-level = 3
lto = true
codegen-units = 1