[package]
edition = "2021"
rust-version = "1.80"
name = "gremlin-rs"
version = "0.1.0"
build = false
exclude = [
"/grammar",
"/.github",
"/src/generated/semantics.json",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for the Gremlin graph traversal language, generated from Apache TinkerPop's official Gremlin.g4 grammar."
homepage = "https://github.com/ophi-dev/gremlin-rs"
documentation = "https://docs.rs/gremlin-rs"
readme = "README.md"
keywords = [
"gremlin",
"tinkerpop",
"graph",
"parser",
"antlr",
]
categories = [
"parser-implementations",
"parsing",
]
license = "Apache-2.0"
repository = "https://github.com/ophi-dev/gremlin-rs"
[lib]
name = "gremlin_rs"
path = "src/lib.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[dependencies.antlr-rust-runtime]
version = "0.9.3"
[lints.rust]
unsafe_code = "forbid"