# 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 = "nom-tracer" version = "1.0.1" authors = ["Xavier Basty "] build = false publish = true autobins = false autoexamples = false autotests = false autobenches = false description = "Extension of nom to trace parser execution" readme = "README.md" keywords = [ "parser", "nom", "trace", "debug", ] categories = ["parsing"] license-file = "LICENSE" repository = "https://github.com/hexbee-net/nom-tracer" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [lib] name = "nom_tracer" path = "src/lib.rs" [[example]] name = "activate_deactivate_trace" path = "examples/activate_deactivate_trace.rs" [[example]] name = "custom_tags" path = "examples/custom_tags.rs" [[example]] name = "error_handling" path = "examples/error_handling.rs" [[example]] name = "max_level_trace" path = "examples/max_level_trace.rs" required-features = ["trace-max-level"] [[example]] name = "nested_parsers" path = "examples/nested_parsers.rs" [[example]] name = "silence_tree" path = "examples/silence_tree.rs" required-features = ["trace-silencing"] [[example]] name = "simple_parser" path = "examples/simple_parser.rs" [[test]] name = "tests" path = "tests/tests.rs" [dependencies.nom] version = "7.1.3" [features] default = [ "trace", "trace-context", "trace-color", "trace-print", "trace-max-level", "trace-silencing", ] trace = [] trace-color = ["trace"] trace-context = [] trace-max-level = ["trace"] trace-print = ["trace"] trace-silencing = ["trace"] [lints.clippy] unwrap_or_default = "allow"