[package]
edition = "2021"
name = "expman"
version = "0.3.3"
authors = ["Lokesh Mohanty <lokesh1197@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core logic and storage engine for expman"
homepage = "https://lokeshmohanty.github.io/expman-rs/"
documentation = "https://lokeshmohanty.github.io/expman-rs/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/lokeshmohanty/expman-rs"
[lib]
name = "expman"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.anyhow]
version = "1"
[dependencies.arrow]
version = "58"
features = ["ipc"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.parquet]
version = "58"
features = ["arrow"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]