[package]
edition = "2021"
name = "nautilus-orm-schema"
version = "1.0.0"
authors = ["y0gm4"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Schema parsing and validation for Nautilus ORM"
readme = "README.md"
keywords = [
"orm",
"database",
"sql",
"query-builder",
]
categories = ["database"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/y0gm4/nautilus"
[lib]
name = "nautilus_schema"
path = "src/lib.rs"
[[test]]
name = "analysis_tests"
path = "tests/analysis_tests.rs"
[[test]]
name = "formatter_tests"
path = "tests/formatter_tests.rs"
[[test]]
name = "ir_tests"
path = "tests/ir_tests.rs"
[[test]]
name = "lexer_tests"
path = "tests/lexer_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"
[[test]]
name = "visitor_tests"
path = "tests/visitor_tests.rs"
[dependencies]
[dev-dependencies]
[lints.clippy]
all = "warn"
nursery = "allow"
pedantic = "allow"
[lints.rust]
unsafe_code = "forbid"