qail 0.19.0

Schema-first database toolkit - migrations, diff, lint, and query generation
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 = "2024"
name = "qail"
version = "0.19.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Schema-first database toolkit - migrations, diff, lint, and query generation"
readme = "README.md"
keywords = [
    "db",
    "sql",
    "cli",
    "query",
    "database",
]
categories = [
    "database",
    "command-line-utilities",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/qail-io/qail"
resolver = "2"

[features]
default = []
full = [
    "repl",
    "watch",
    "vector",
]
repl = ["dep:rustyline"]
vector = [
    "dep:qail-qdrant",
    "dep:reqwest",
]
watch = ["dep:notify-debouncer-full"]

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

[[bin]]
name = "qail"
path = "src/bin/qail.rs"

[dependencies.anyhow]
version = "1.0"

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

[dependencies.notify-debouncer-full]
version = "0.4"
optional = true

[dependencies.qail-core]
version = "0.19.0"
features = ["analyzer"]

[dependencies.qail-pg]
version = "0.19.0"

[dependencies.qail-qdrant]
version = "0.19.0"
optional = true

[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true

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

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "net",
    "io-util",
    "time",
    "fs",
]

[dependencies.toml]
version = "0.8"

[lints.rust]
dead_code = "deny"
unused = "deny"
unused_imports = "deny"
unused_variables = "deny"
warnings = "deny"