flowdb 0.1.5

A time-series database written in Rust, designed for high performance and low latency.
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 = "flowdb"
version = "0.1.5"
authors = ["jinti<shenjindi@fourz.cn>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A time-series database written in Rust, designed for high performance and low latency."
readme = "README.md"
keywords = [
    "database",
    "embedded",
    "lsm-tree",
    "persistence",
    "time-series",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/restsend/flowdb"

[features]
default = ["server"]
server = [
    "dep:axum",
    "dep:tower-http",
    "dep:base64",
]

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

[[bin]]
name = "flowdb-server"
path = "src/bin/flowdb-server.rs"
required-features = ["server"]

[[bin]]
name = "flowdb-stress"
path = "src/bin/flowdb-stress.rs"

[[example]]
name = "flowdb-vs-rocksdb"
path = "examples/flowdb-vs-rocksdb.rs"

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

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

[[bench]]
name = "flowdb_bench"
path = "benches/flowdb_bench.rs"
harness = false

[dependencies.ahash]
version = "0.8"

[dependencies.axum]
version = "0.8"
optional = true

[dependencies.base64]
version = "0.22"
optional = true

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.hdrhistogram]
version = "7"

[dependencies.lru]
version = "0.18"

[dependencies.lz4_flex]
version = "0.13.1"

[dependencies.memmap2]
version = "0.9"

[dependencies.parking_lot]
version = "0.12"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.toml]
version = "1.1.2"

[dependencies.tower-http]
version = "0.6"
features = [
    "cors",
    "trace",
]
optional = true

[dependencies.tracing]
version = "0.1"

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

[dependencies.zstd]
version = "0.13"
features = ["zstdmt"]

[dev-dependencies.arbitrary]
version = "1"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.rocksdb]
version = "0.24"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tower]
version = "0.5"
features = ["util"]