Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 4 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chumsky"
version = "0.12.0"
version = "0.13.0"
description = "A parser library for humans with powerful error recovery"
authors = ["Joshua Barretto <joshua.s.barretto@gmail.com>", "Elijah Hartvigsen <elijah.reed@hartvigsen.xyz", "Jakob Wiesmore <runetynan@gmail.com>"]
repository = "https://github.com/zesterer/chumsky"
Expand Down Expand Up @@ -35,10 +35,6 @@ memoization = []
# Allows extending chumsky by writing your own parser implementations.
extension = []

# Make builtin parsers such as `Boxed` use atomic instead of non-atomic internals.
# TODO: Remove or rework this
sync = ["spin"]

# Enable Pratt parsing combinator
pratt = ["unstable"]

Expand Down Expand Up @@ -68,8 +64,9 @@ docsrs = []

# An alias of all features that work with the stable compiler.
# Do not use this feature, its removal is not considered a breaking change and its behaviour may change.
# If you're working on chumsky and you're adding a feature that does not require nightly support, please add it to this list.
_test_stable = ["std", "stacker", "memoization", "extension", "sync"]
# If you're working on chumsky, and you're adding a feature that does not require nightly support,
# please add it to this list.
_test_stable = ["std", "stacker", "memoization", "extension"]

[package.metadata.docs.rs]
all-features = true
Expand All @@ -79,7 +76,6 @@ rustdoc-args = ["--cfg", "docsrs"]
hashbrown = "0.15"
stacker = { version = "0.1", optional = true }
regex-automata = { version = "0.3", default-features = false, optional = true, features = ["alloc", "meta", "perf", "unicode", "nfa", "dfa", "hybrid"] }
spin = { version = "0.9", features = ["once"], default-features = false, optional = true }
lexical = { version = "6.1.1", default-features = false, features = ["parse-integers", "parse-floats", "format"], optional = true }
either = { version = "1.8.1", optional = true }
serde = { version = "1.0", default-features = false, optional = true, features = ["derive"] }
Expand Down