narrowdb 0.2.0

A lightweight columnar database engine for log and time-series data
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 = "narrowdb"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight columnar database engine for log and time-series data"
readme = "README.md"
keywords = [
    "database",
    "columnar",
    "analytics",
    "logs",
    "timeseries",
]
categories = ["database-implementations"]
license = "MIT"
repository = "https://github.com/lassejlv/narrowdb"
resolver = "2"

[features]
bench-duckdb = ["dep:duckdb"]

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

[[bin]]
name = "bench-duckdb"
path = "bench/duckdb.rs"
required-features = ["bench-duckdb"]

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

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

[dependencies.anyhow]
version = "1.0"

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

[dependencies.lz4_flex]
version = "0.11"

[dependencies.memmap2]
version = "0.9"

[dependencies.once_cell]
version = "1.21"

[dependencies.ordered-float]
version = "4.6"

[dependencies.rayon]
version = "1.10"

[dependencies.rustc-hash]
version = "2.1"

[dependencies.sqlparser]
version = "0.53"