oak-core 0.0.1

Core parser combinator library providing fundamental parsing primitives.
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 = "2024"
name = "oak-core"
version = "0.0.1"
authors = ["Yggdrasill Team <192607617@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core parser combinator library providing fundamental parsing primitives."
homepage = "https://github.com/ygg-lang/oaks"
documentation = "https://docs.rs/oak-core"
readme = "readme.md"
keywords = [
    "parser",
    "parser-combinators",
    "core",
    "primitive",
]
categories = [
    "parsing",
    "no-std",
]
license = "MPL-2.0"
repository = "https://github.com/ygg-lang/oaks"
resolver = "2"

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

[features]
default = []
testing = [
    "walkdir",
    "serde_json",
]

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

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

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

[[bench]]
name = "green_builder"
path = "benches/green_builder.rs"

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

[dependencies.serde_json]
version = "1.0.145"
optional = true

[dependencies.smallvec]
version = "1.13"
features = [
    "union",
    "const_generics",
    "const_new",
]

[dependencies.tracing]
version = "0.1.41"

[dependencies.triomphe]
version = "0.1.15"
default-features = false

[dependencies.url]
version = "2.5.7"
features = ["serde"]

[dependencies.walkdir]
version = "2.5.0"
optional = true

[dev-dependencies.serde_json]
version = "1.0.145"

[dev-dependencies.walkdir]
version = "2.5.0"