zigsyn 0.1.0

A pure Rust Zig syntax scanner and parser.
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 = "zigsyn"
version = "0.1.0"
build = false
include = [
    "/benches/**",
    "/CHANGELOG.md",
    "/LICENSE",
    "/README.md",
    "/spec/**",
    "/src/**",
    "/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust Zig syntax scanner and parser."
documentation = "https://docs.rs/zigsyn"
readme = "README.md"
keywords = [
    "zig",
    "parser",
    "scanner",
    "syntax",
    "ast",
]
categories = [
    "parser-implementations",
    "parsing",
    "compilers",
]
license = "MIT"
repository = "https://github.com/ydah/zigsyn"

[package.metadata.docs.rs]
all-features = true

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

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

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

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

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

[[bench]]
name = "parser"
path = "benches/parser.rs"
harness = false

[[bench]]
name = "scanner"
path = "benches/scanner.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

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

[dependencies.strum]
version = "0.27"
features = ["derive"]

[dependencies.thiserror]
version = "2"

[dev-dependencies.criterion]
version = "0.5"