# 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" rust-version = "1.81" name = "syntree" version = "0.18.0" authors = ["John-John Tedro "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A memory efficient syntax tree for language developers." homepage = "https://github.com/udoprog/syntree" documentation = "https://docs.rs/syntree" readme = "README.md" keywords = [ "language", "syntax-tree", ] categories = ["parsing"] license = "MIT OR Apache-2.0" repository = "https://github.com/udoprog/syntree" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "syntree" path = "src/lib.rs" [[example]] name = "calculator" path = "examples/calculator/main.rs" [[example]] name = "change_set" path = "examples/change_set.rs" [[example]] name = "checkpoint" path = "examples/checkpoint.rs" [[example]] name = "iterator" path = "examples/iterator.rs" [[example]] name = "math" path = "examples/math.rs" [[example]] name = "synthetic_strings" path = "examples/synthetic_strings.rs" [[example]] name = "walk" path = "examples/walk.rs" [[example]] name = "walk_events" path = "examples/walk_events.rs" [[test]] name = "checkpoints" path = "tests/checkpoints.rs" [[test]] name = "walk_trees" path = "tests/walk_trees.rs" [dev-dependencies.anyhow] version = "1.0.70" [dev-dependencies.codespan-reporting] version = "0.11.1" [dev-dependencies.thiserror] version = "1.0.40" [features] alloc = [] default = [ "alloc", "std", ] std = []