63 lines
1.2 KiB
TOML
63 lines
1.2 KiB
TOML
# 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 = "2018"
|
|
name = "chumsky"
|
|
version = "0.9.3"
|
|
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>"]
|
|
exclude = [
|
|
"/misc/*",
|
|
"/benches/*",
|
|
]
|
|
description = "A parser library for humans with powerful error recovery"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"parser",
|
|
"combinator",
|
|
"token",
|
|
"language",
|
|
"syntax",
|
|
]
|
|
categories = [
|
|
"parsing",
|
|
"text-processing",
|
|
]
|
|
license = "MIT"
|
|
repository = "https://github.com/zesterer/chumsky"
|
|
|
|
[dependencies.hashbrown]
|
|
version = "0.14.2"
|
|
|
|
[dependencies.stacker]
|
|
version = "0.1"
|
|
optional = true
|
|
|
|
[dev-dependencies.ariadne]
|
|
version = "0.3.0"
|
|
|
|
[dev-dependencies.pom]
|
|
version = "3.0"
|
|
|
|
[features]
|
|
ahash = []
|
|
default = [
|
|
"ahash",
|
|
"std",
|
|
"spill-stack",
|
|
]
|
|
nightly = []
|
|
spill-stack = [
|
|
"stacker",
|
|
"std",
|
|
]
|
|
std = []
|