decypher 0.2.0-alpha.6

A rust library for parsing openCypher queries.
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.94"
name = "decypher"
version = "0.2.0-alpha.6"
authors = [
    "Markus Mayer <widemeadows@gmail.com>",
    "Austin Poor <code@austinpoor.com>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A rust library for parsing openCypher queries."
homepage = "https://github.com/sunsided/cypher"
documentation = "https://docs.rs/open-cypher"
readme = "README.md"
keywords = [
    "sql",
    "cypher",
    "graph",
    "parser",
    "opencypher",
]
categories = ["parser-implementations"]
license = "EUPL-1.2 OR MIT OR Apache-2.0"
repository = "https://github.com/sunsided/cypher"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["hir"]
hir = []
miette = ["dep:miette"]
serde = ["dep:serde"]

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

[[example]]
name = "indiana_jones"
path = "examples/indiana_jones.rs"
required-features = ["hir"]

[[example]]
name = "parse_query"
path = "examples/parse_query.rs"

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

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

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

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

[[test]]
name = "hir_lower"
path = "tests/hir_lower.rs"
required-features = ["hir"]

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

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

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

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

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

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

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

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

[dependencies.miette]
version = "7"
optional = true

[dependencies.rowan]
version = "0.16"

[dependencies.ryu]
version = "1"

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

[dependencies.thiserror]
version = "2"

[dependencies.unicode-ident]
version = "1"

[dev-dependencies.assert2]
version = "0.4"

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