[[bench]]
harness = false
name = "large_scale_benchmarks"
path = "benches/large_scale_benchmarks.rs"
[[bench]]
harness = false
name = "memory_benchmarks"
path = "benches/memory_benchmarks.rs"
[[bench]]
harness = false
name = "simple_benchmarks"
path = "benches/simple_benchmarks.rs"
[[bin]]
name = "dataprof-cli"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.arrow]
optional = true
version = "56.1"
[dependencies.async-trait]
optional = true
version = "0.1"
[dependencies.clap]
features = ["derive"]
version = "4.5"
[dependencies.colored]
version = "3.0"
[dependencies.csv]
version = "1.3"
[dependencies.duckdb]
optional = true
version = "1.1"
[dependencies.glob]
version = "0.3"
[dependencies.glob-match]
version = "0.2"
[dependencies.indicatif]
version = "0.17"
[dependencies.log]
version = "0.4"
[dependencies.memmap2]
version = "0.9"
[dependencies.num_cpus]
version = "1.16"
[dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.24.1"
[dependencies.rand]
features = ["small_rng"]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.rayon]
version = "1.8"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
default-features = false
features = ["runtime-tokio-rustls", "chrono", "uuid"]
optional = true
version = "0.8.1"
[dependencies.sysinfo]
version = "0.30"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full"]
optional = true
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.url]
optional = true
version = "2.5"
[dependencies.wide]
version = "0.7"
[dev-dependencies.assert_matches]
version = "1.5"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"
[dev-dependencies.fake]
features = ["derive"]
version = "2.9"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.quickcheck_macros]
version = "1.0"
[dev-dependencies.serial_test]
version = "3.1"
[dev-dependencies.tempfile]
version = "3.10"
[[example]]
name = "database_examples"
path = "examples/database_examples.rs"
[features]
all-db = ["postgres", "mysql", "sqlite", "duckdb"]
arrow = ["dep:arrow"]
database = ["dep:tokio", "dep:async-trait", "dep:url"]
default = []
duckdb = ["database", "dep:duckdb"]
minimal = []
mysql = ["database", "dep:sqlx", "sqlx/mysql"]
postgres = ["database", "dep:sqlx", "sqlx/postgres"]
production = ["postgres", "mysql"]
python = ["dep:pyo3"]
sqlite = ["database", "dep:sqlx", "sqlx/sqlite"]
[lib]
crate-type = ["rlib", "cdylib"]
name = "dataprof"
path = "src/lib.rs"
[package]
authors = ["Andrea Bozzo"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "data-structures"]
description = "A fast, lightweight CLI tool for CSV data profiling and analysis"
edition = "2021"
keywords = ["csv", "data", "analysis", "profiling", "cli"]
license = "GPL-3.0"
name = "dataprof"
readme = "README.md"
repository = "https://github.com/AndreaBozzo/dataprof"
version = "0.4.4"
[profile.bench]
inherits = "release"
panic = "unwind"
[profile.dev]
codegen-units = 256
debug = 2
incremental = true
opt-level = 0
split-debuginfo = "packed"
[profile.dev.package."*"]
opt-level = 1
[profile.release]
codegen-units = 1
lto = "thin"
opt-level = 3
panic = "abort"
[profile.test]
codegen-units = 256
debug = 2
incremental = true
opt-level = 1
[profile.test.package."*"]
opt-level = 1
[[test]]
name = "adaptive_engine_tests"
path = "tests/adaptive_engine_tests.rs"
[[test]]
name = "arrow_integration_test"
path = "tests/arrow_integration_test.rs"
[[test]]
name = "arrow_performance_test"
path = "tests/arrow_performance_test.rs"
[[test]]
name = "cli_basic_tests"
path = "tests/cli_basic_tests.rs"
[[test]]
name = "data_quality_simple"
path = "tests/data_quality_simple.rs"
[[test]]
name = "database_integration"
path = "tests/database_integration.rs"
[[test]]
name = "error_handling_simple"
path = "tests/error_handling_simple.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "memory_leak_tests"
path = "tests/memory_leak_tests.rs"
[[test]]
name = "v03_comprehensive"
path = "tests/v03_comprehensive.rs"