dkit 1.5.0

A unified CLI to convert, query, and explore data across formats
# 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.75.0"
name = "dkit"
version = "1.5.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A unified CLI to convert, query, and explore data across formats"
homepage = "https://github.com/syangkkim/dkit"
readme = "README.md"
keywords = [
    "cli",
    "data-format",
    "converter",
    "query",
    "json",
]
categories = [
    "command-line-utilities",
    "encoding",
]
license = "MIT"
repository = "https://github.com/syangkkim/dkit"

[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/dkit-v{ version }-{ target }{ archive-suffix }"
bin-dir = "dkit{ binary-ext }"
pkg-fmt = "tgz"

[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"

[features]
all = [
    "xml",
    "msgpack",
    "excel",
    "sqlite",
    "parquet",
    "hcl",
    "plist",
    "template",
]
default = []
excel = ["dkit-core/excel"]
hcl = ["dkit-core/hcl"]
msgpack = ["dkit-core/msgpack"]
parquet = [
    "dkit-core/parquet",
    "dep:arrow",
    "dep:parquet-impl",
    "dep:bytes",
]
plist = ["dkit-core/plist"]
sqlite = ["dkit-core/sqlite"]
template = ["dkit-core/template"]
xml = ["dkit-core/xml"]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[dependencies.anyhow]
version = "1"

[dependencies.arrow]
version = "53"
features = ["prettyprint"]
optional = true
default-features = false

[dependencies.bytes]
version = "1"
optional = true

[dependencies.chardetng]
version = "0.1"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.clap_complete]
version = "4"

[dependencies.colored]
version = "2"

[dependencies.comfy-table]
version = "7"

[dependencies.csv]
version = "1"

[dependencies.ctrlc]
version = "3"
features = ["termination"]

[dependencies.dirs]
version = "6.0.0"

[dependencies.dkit-core]
version = "1.5.0"

[dependencies.encoding_rs]
version = "0.8"

[dependencies.glob]
version = "0.3"

[dependencies.indexmap]
version = "2"
features = ["serde"]

[dependencies.jsonschema]
version = "0.17"
default-features = false

[dependencies.miette]
version = "7"
features = ["fancy"]

[dependencies.notify]
version = "7"

[dependencies.parquet-impl]
version = "53"
features = [
    "arrow",
    "snap",
    "zstd",
]
optional = true
default-features = false
package = "parquet"

[dependencies.rand]
version = "0.8"

[dependencies.rayon]
version = "1"

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

[dependencies.serde_json]
version = "1"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "1"

[dependencies.toml]
version = "0.8"

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

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

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

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

[dev-dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

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

[build-dependencies.clap]
version = "4"
features = ["derive"]

[build-dependencies.clap_complete]
version = "4"

[build-dependencies.clap_mangen]
version = "0.2"