cirru_parser 0.2.4

Parser for Cirru text syntax
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 = "cirru_parser"
version = "0.2.4"
authors = ["jiyinyiyong <jiyinyiyong@gmail.com>"]
build = false
exclude = [
    "tests/cirru/*",
    "tests/data/*",
    "tests/writer_cirru/*",
    "tests/writer_data/*",
    "src/main.rs",
    "/wasm-example",
    "examples/",
    ".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for Cirru text syntax"
homepage = "http://cirru.org"
documentation = "https://docs.rs/crate/cirru_parser/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/Cirru/parser.rs"

[features]
serde-json = ["dep:serde_json"]

[lib]
name = "cirru_parser"
path = "src/parser.rs"
test = true
doctest = true
bench = true

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

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

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

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

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

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

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

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

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

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

[dependencies.serde]
version = "1.0.219"

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

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

[profile.release]
debug = 2