sql-stream 0.1.0

A production-grade CLI tool for executing SQL queries against CSV/JSON files using streaming architecture
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"
name = "sql-stream"
version = "0.1.0"
authors = ["SQL Stream Contributors"]
build = false
exclude = [
    "tests/fixtures/*",
    "target/*",
    ".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A production-grade CLI tool for executing SQL queries against CSV/JSON files using streaming architecture"
homepage = "https://github.com/1cbyc/sql-stream"
documentation = "https://docs.rs/sql-stream"
readme = "README.md"
keywords = [
    "sql",
    "csv",
    "json",
    "datafusion",
    "cli",
]
categories = [
    "command-line-utilities",
    "database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/1cbyc/sql-stream"

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

[[bin]]
name = "sql-stream"
path = "src/main.rs"

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

[dependencies.anyhow]
version = "1.0"

[dependencies.arrow]
version = "53.3.0"

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

[dependencies.datafusion]
version = "45.0.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.42"
features = ["full"]

[dependencies.tracing]
version = "0.1"

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

[dev-dependencies.csv]
version = "1.3"

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

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true