# 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 = "cute_strings" version = "0.1.1" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Library to colorize strings in the terminal" readme = "README.md" keywords = [ "strings", "coloring", ] license = "MIT" repository = "https://github.com/faculerena/cute-strings" [lib] name = "cute_strings" path = "src/lib.rs" [[bin]] name = "cute_strings" path = "src/main.rs" [[test]] name = "tests" path = "tests/tests.rs" [dependencies.regex] version = "1.5" optional = true [dependencies.serde] version = "1.0.204" features = ["derive"] optional = true [dependencies.thiserror] version = "1.0.62" optional = true [features] regex = [ "dep:regex", "dep:thiserror", ] serde = ["dep:serde"]