[package]
edition = "2021"
rust-version = "1.75"
name = "clicktype-query"
version = "0.2.0"
authors = ["Rafa"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe query builder for ClickHouse with compile-time validation"
homepage = "https://github.com/clicktype/clicktype"
documentation = "https://docs.rs/clicktype"
readme = false
keywords = [
"clickhouse",
"database",
"type-safe",
"sql",
"query-builder",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/clicktype/clicktype"
[lib]
name = "clicktype_query"
path = "src/lib.rs"
[[test]]
name = "aggregate_tests"
path = "tests/aggregate_tests.rs"
[[test]]
name = "compile_fail_tests"
path = "tests/compile_fail_tests.rs"
[[test]]
name = "expr_tests"
path = "tests/expr_tests.rs"
[[test]]
name = "function_tests"
path = "tests/function_tests.rs"
[[test]]
name = "subquery_tests"
path = "tests/subquery_tests.rs"
[[test]]
name = "window_tests"
path = "tests/window_tests.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.clicktype-core]
version = "0.2.0"
[dev-dependencies.clicktype-macros]
version = "0.2.0"
[dev-dependencies.trybuild]
version = "1.0"