keelson-core 0.1.1

Core primitives for keelson: Value, Expression, SqlWriter, Dialect and Mod.
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"
rust-version = "1.90"
name = "keelson-core"
version = "0.1.1"
authors = ["Kensuke Kubo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core primitives for keelson: Value, Expression, SqlWriter, Dialect and Mod."
readme = "README.md"
keywords = [
    "sql",
    "query-builder",
    "database",
    "postgres",
    "sqlite",
]
categories = ["database"]
license = "MIT"
repository = "https://github.com/ken109/keelson-rs"

[package.metadata.docs.rs]
features = [
    "chrono",
    "uuid",
    "decimal",
    "json",
    "macros",
]

[features]
chrono = ["dep:chrono"]
decimal = ["dep:rust_decimal"]
json = ["dep:serde_json"]
live-docker = []
macros = ["dep:keelson-macros"]
testing = []
uuid = ["dep:uuid"]

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = ["std"]
optional = true
default-features = false

[dependencies.keelson-macros]
version = "0.1.1"
optional = true

[dependencies.rust_decimal]
version = "1"
features = ["std"]
optional = true
default-features = false

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

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

[dependencies.uuid]
version = "1"
features = ["std"]
optional = true
default-features = false

[dev-dependencies.serde_json]
version = "1"

[lints.clippy]
todo = "warn"

[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"