slipql 0.1.0

A query language for Slipcase metadata: select, from, where over a directory of containers
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.88"
name = "slipql"
version = "0.1.0"
authors = ["David M. Anderson"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A query language for Slipcase metadata: select, from, where over a directory of containers"
homepage = "https://slipcaseformat.org"
readme = "README.md"
keywords = [
    "slipcase",
    "query",
    "metadata",
    "toml",
    "sql",
]
categories = [
    "command-line-utilities",
    "filesystem",
]
license = "MIT"
repository = "https://github.com/excelano/slipql"

[package.metadata.deb]
maintainer = "David M. Anderson <david.anderson@excelano.com>"
extended-description = """
slipql runs select/from/where queries over the metadata of Slipcase containers
in a directory tree. Each container is a row, each metadata key a column, and
the result renders as a table, CSV, TSV, or JSON. It reads metadata in place
without unpacking, keeps no index, and changes nothing."""
section = "utils"
priority = "optional"
depends = "libc6, libgcc-s1"
assets = [
    [
    "target/release/slipql",
    "usr/bin/",
    "755",
],
    [
    "README.md",
    "usr/share/doc/slipql/README.md",
    "644",
],
    [
    "LICENSE",
    "usr/share/doc/slipql/copyright",
    "644",
],
]

[features]
cli = [
    "dep:clap",
    "dep:rustyline",
]
default = ["cli"]

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

[[bin]]
name = "slipql"
path = "src/main.rs"
required-features = ["cli"]

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

[dependencies.clap]
version = "4.6"
features = ["derive"]
optional = true

[dependencies.rustyline]
version = "18.0"
optional = true

[dependencies.slpc]
version = "0.3"

[dependencies.unicode-width]
version = "0.2"

[dev-dependencies.slpc]
version = "0.3"
features = ["fs"]

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

[profile.dist]
lto = "thin"
inherits = "release"