[package]
edition = "2024"
rust-version = "1.94"
name = "cyrs-db"
version = "0.1.0"
authors = ["Patrick Hall <phallsignup@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Salsa-backed incremental analysis database for Cypher / GQL (spec 0001 §11)."
homepage = "https://github.com/phall1/cyrs"
readme = "README.md"
keywords = [
"cypher",
"gql",
"graph",
"parser",
"lsp",
]
categories = [
"database",
"parser-implementations",
"development-tools::debugging",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/phall1/cyrs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "cyrs_db"
path = "src/lib.rs"
[dependencies.cyrs-ast]
version = "0.1.0"
[dependencies.cyrs-diag]
version = "0.1.0"
[dependencies.cyrs-fmt]
version = "0.1.0"
[dependencies.cyrs-hir]
version = "0.1.0"
[dependencies.cyrs-plan]
version = "0.1.0"
[dependencies.cyrs-schema]
version = "0.1.0"
[dependencies.cyrs-sema]
version = "0.1.0"
[dependencies.cyrs-syntax]
version = "0.1.0"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.salsa]
version = "0.26"
[dependencies.smol_str]
version = "0.3"
[dependencies.tracing]
version = "0.1"
[lints.clippy]
dbg_macro = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
print_stderr = "allow"
print_stdout = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
todo = "warn"
too_many_lines = "allow"
unimplemented = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "deny"
unsafe_code = "forbid"
unused_must_use = "deny"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1