[package]
edition = "2024"
name = "oxide-sql-core"
version = "0.1.0"
authors = ["Danny Willems"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe SQL parser and builder with compile-time validation"
homepage = "https://leakix.github.io/oxide-sql/"
readme = false
keywords = [
"sql",
"parser",
"query-builder",
"type-safe",
"sql-injection",
]
categories = [
"database",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/leakix/oxide-sql"
resolver = "2"
[lib]
name = "oxide_sql_core"
path = "src/lib.rs"
[[example]]
name = "invoicing"
path = "examples/invoicing.rs"
[[test]]
name = "derive_table"
path = "tests/derive_table.rs"
[[test]]
name = "duckdb_e2e"
path = "tests/duckdb_e2e.rs"
[[test]]
name = "parser_complex"
path = "tests/parser_complex.rs"
[[test]]
name = "parser_data_types"
path = "tests/parser_data_types.rs"
[[test]]
name = "parser_errors"
path = "tests/parser_errors.rs"
[[test]]
name = "parser_expressions"
path = "tests/parser_expressions.rs"
[[test]]
name = "parser_functions"
path = "tests/parser_functions.rs"
[[test]]
name = "parser_insert"
path = "tests/parser_insert.rs"
[[test]]
name = "parser_literals"
path = "tests/parser_literals.rs"
[[test]]
name = "parser_operators"
path = "tests/parser_operators.rs"
[[test]]
name = "parser_select_clauses"
path = "tests/parser_select_clauses.rs"
[[test]]
name = "parser_select_columns"
path = "tests/parser_select_columns.rs"
[[test]]
name = "parser_select_from"
path = "tests/parser_select_from.rs"
[[test]]
name = "parser_update_delete"
path = "tests/parser_update_delete.rs"
[dependencies]
[dev-dependencies.duckdb]
version = "1.1"
features = ["bundled"]
[dev-dependencies.oxide-sql-derive]
version = "0.1.0"