cqlite-cli 0.11.0

Command-line interface for CQLite — read Apache Cassandra 5.0 SSTables without a cluster
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 = "2021"
rust-version = "1.85"
name = "cqlite-cli"
version = "0.11.0"
authors = ["CQLite Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for CQLite — read Apache Cassandra 5.0 SSTables without a cluster"
readme = "README.md"
keywords = [
    "database",
    "embedded",
    "sstable",
    "wasm",
]
categories = [
    "database-implementations",
    "embedded",
    "wasm",
]
license = "Apache-2.0"
repository = "https://github.com/pmcfadin/cqlite"

[features]
benchmarks = []
ci_zero_tolerance = []
cli-helpers = [
    "state_machine",
    "cqlite-core/cli-helpers",
]
default = [
    "interactive",
    "tui",
    "cli-helpers",
]
experimental = ["cqlite-core/experimental"]
integration-tests = []
interactive = []
state_machine = [
    "cqlite-core/state_machine",
    "cqlite-core/parquet",
]
tui = [
    "ratatui",
    "crossterm",
]
write-support = [
    "state_machine",
    "cqlite-core/write-support",
]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.21"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.4"
features = [
    "derive",
    "env",
]

[dependencies.colored]
version = "2.0"

[dependencies.console]
version = "0.15"

[dependencies.cqlite-core]
version = "0.11.0"

[dependencies.crossterm]
version = "0.27"
optional = true

[dependencies.csv]
version = "1.3"

[dependencies.dirs]
version = "5.0"

[dependencies.env_logger]
version = "0.11"

[dependencies.hex]
version = "0.4"

[dependencies.indicatif]
version = "0.17"

[dependencies.log]
version = "0.4"

[dependencies.prettytable-rs]
version = "0.10"

[dependencies.ratatui]
version = "0.24"
optional = true

[dependencies.regex]
version = "1.10"

[dependencies.rustyline]
version = "14.0"

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

[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]

[dependencies.serde_yaml]
version = "0.9"

[dependencies.sysinfo]
version = "0.30"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.0"
features = [
    "rt",
    "rt-multi-thread",
    "macros",
    "signal",
]
default-features = false

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dev-dependencies.arrow]
version = "53"
default-features = false

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.bytes]
version = "1.4"

[dev-dependencies.cargo-llvm-cov]
version = "0.5"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.duckdb]
version = "1.1"

[dev-dependencies.escargot]
version = "0.5"

[dev-dependencies.fake]
version = "2.8"

[dev-dependencies.insta]
version = "1.34"

[dev-dependencies.mockall]
version = "0.11"

[dev-dependencies.num-bigint]
version = "0.4"

[dev-dependencies.once_cell]
version = "1.19"

[dev-dependencies.parquet]
version = "53"
features = [
    "arrow",
    "snap",
    "zstd",
]
default-features = false

[dev-dependencies.predicates]
version = "3.0"

[dev-dependencies.proptest]
version = "1.0"

[dev-dependencies.quickcheck]
version = "1.0"

[dev-dependencies.quickcheck_macros]
version = "1.0"

[dev-dependencies.rand]
version = "0.9"

[dev-dependencies.rstest]
version = "0.18"

[dev-dependencies.rustc_version]
version = "0.4"

[dev-dependencies.serial_test]
version = "3.0"

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

[dev-dependencies.test-case]
version = "3.0"

[dev-dependencies.test-log]
version = "0.2"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.trybuild]
version = "1.0"

[dev-dependencies.trycmd]
version = "0.14"

[dev-dependencies.wait-timeout]
version = "0.2"

[dev-dependencies.wiremock]
version = "0.5"