[package]
edition = "2021"
name = "slatedb-cli"
version = "0.12.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A command-line interface for interacting with SlateDB databases."
homepage = "https://slatedb.io"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/slatedb/slatedb"
[[bin]]
name = "slatedb"
path = "src/main.rs"
bench = false
[dependencies.chrono]
version = "0.4.41"
[dependencies.clap]
version = "4.5.44"
features = ["derive"]
[dependencies.humantime]
version = "2.1.0"
[dependencies.object_store]
version = "0.12.3"
[dependencies.serde_json]
version = "1.0.142"
[dependencies.slatedb]
version = "0.12.0"
[dependencies.tokio]
version = "1.47.1"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.tokio-util]
version = "0.7.16"
features = ["rt"]
default-features = false
[dependencies.tracing]
version = "0.1.40"
features = ["log"]
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]
[dependencies.ulid]
version = "1.2.1"
features = ["serde"]
[dependencies.uuid]
version = "1.18.0"
features = [
"v4",
"serde",
]
[dev-dependencies.rstest]
version = "0.26.1"
[lints.rust]
unreachable_pub = "warn"
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = [
"cfg(dst)",
"cfg(slow)",
"cfg(tokio_unstable)",
]