[package]
edition = "2021"
name = "alopex-cli"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for Alopex DB"
readme = "README.md"
keywords = [
"database",
"cli",
]
categories = [
"database-implementations",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/alopex-db/alopex"
[features]
default = ["s3"]
s3 = ["alopex-embedded/s3"]
[lib]
name = "alopex_cli"
path = "src/lib.rs"
[[bin]]
name = "alopex"
path = "src/main.rs"
[[test]]
name = "admin_actions_e2e_test"
path = "tests/admin_actions_e2e_test.rs"
[[test]]
name = "e2e_tui"
path = "tests/e2e_tui.rs"
[[test]]
name = "lifecycle_e2e_test"
path = "tests/lifecycle_e2e_test.rs"
[[test]]
name = "profile_test"
path = "tests/profile_test.rs"
[[test]]
name = "server_test"
path = "tests/server_test.rs"
[[test]]
name = "sql_stdin"
path = "tests/sql_stdin.rs"
[[test]]
name = "streaming_test"
path = "tests/streaming_test.rs"
[[test]]
name = "tui_test"
path = "tests/tui_test.rs"
[[test]]
name = "ui_mode_test"
path = "tests/ui_mode_test.rs"
[[bench]]
name = "streaming_bench"
path = "benches/streaming_bench.rs"
harness = false
[dependencies.alopex-core]
version = "0.5.0"
features = ["compression-zstd"]
[dependencies.alopex-embedded]
version = "0.5.0"
[dependencies.alopex-sql]
version = "0.5.0"
[dependencies.anyhow]
version = "1.0"
[dependencies.arrow-array]
version = "52"
[dependencies.arrow-schema]
version = "52"
[dependencies.bincode]
version = "1.3"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.comfy-table]
version = "7"
[dependencies.crossterm]
version = "0.27"
[dependencies.csv]
version = "1.3"
[dependencies.ctrlc]
version = "3.4"
[dependencies.dirs]
version = "5.0"
[dependencies.futures-util]
version = "0.3"
[dependencies.humantime]
version = "2.1"
[dependencies.indicatif]
version = "0.17"
[dependencies.parquet]
version = "52"
features = ["arrow"]
[dependencies.ratatui]
version = "0.26"
[dependencies.regex]
version = "1.11"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"stream",
"rustls-tls",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "1.0"
[dependencies.time]
version = "0.3"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.url]
version = "2.5"
[dependencies.x509-parser]
version = "0.16"
[dev-dependencies.axum]
version = "0.6"
[dev-dependencies.axum-server]
version = "0.5"
features = ["tls-rustls"]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.hyper]
version = "0.14"
[dev-dependencies.portable-pty]
version = "0.8"
[dev-dependencies.ratatui-testlib]
version = "0.1"
features = ["mvp"]
[dev-dependencies.rcgen]
version = "0.12"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.tower]
version = "0.4"