# 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 = "simple_detailed_error" version = "0.1.0" authors = [ "Jorge Rico Vivas ", "Jorge Rico Vivas ", ] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Stack and specify errors explainations saying what happened, why, how, where, how to solve it and its causes" readme = "README.md" keywords = [ "error", "detail", "detailed-error", "simple-error", "backtrace", ] categories = [ "rust-patterns", "no-std", "parsing", "visualization", ] license-file = "LICENSE" repository = "https://github.com/JorgeRicoVivas/simple_detailed_error" [package.metadata.docs.rs] all-features = true [lib] name = "simple_detailed_error" path = "src/lib.rs" [dependencies.colored] version = "2.1.0" optional = true [dependencies.serde] version = "1.0.203" features = ["derive"] optional = true [dependencies.string_colorization] version = "1.0.0" optional = true [dev-dependencies.itertools] version = "0.13.0" [features] colorization = [ "dep:string_colorization", "dep:colored", ] default = [ "std", "colorization", ] serde = ["dep:serde"] std = []