hypen-parser 0.2.0

A Rust implementation of the Hypen DSL parser using Chumsky
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 = "2021"
name = "hypen-parser"
version = "0.2.0"
authors = ["Hypen Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of the Hypen DSL parser using Chumsky"
readme = "README.md"
license = "MIT"
repository = "https://github.com/hypen-lang/hypen-engine-rs"

[profile.release]
opt-level = "z"
lto = true

[lib]
name = "hypen_parser"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "hypen-parser"
path = "src/main.rs"

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

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

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

[dependencies.ariadne]
version = "0.4"
optional = true

[dependencies.chumsky]
version = "1.0.0-alpha.7"
default-features = false

[dependencies.console_error_panic_hook]
version = "0.1"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde-wasm-bindgen]
version = "0.6"
optional = true

[dependencies.serde_json]
version = "1.0"

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

[dev-dependencies]

[features]
cli = ["ariadne"]
default = ["cli"]
wasm = [
    "wasm-bindgen",
    "serde-wasm-bindgen",
    "console_error_panic_hook",
]