# 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 = "2018" name = "ansi-to-tui" version = "7.0.0" authors = ["Uttarayan Mondal "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A library to convert ansi color coded text into ratatui::text::Text type from ratatui library" readme = "README.md" keywords = [ "ansi", "ascii", "tui", "parser", ] license = "MIT" repository = "https://github.com/uttarayan21/ansi-to-tui" [profile.bench] debug = 2 [lib] name = "ansi_to_tui" path = "src/lib.rs" [[test]] name = "tests" path = "tests/tests.rs" [[bench]] name = "parsing" path = "benches/parsing.rs" harness = false [dependencies.nom] version = "7.1" [dependencies.simdutf8] version = "0.1" optional = true [dependencies.smallvec] version = "1.10.0" features = ["const_generics"] [dependencies.thiserror] version = "1.0" [dependencies.tui] version = "0.29" default-features = false package = "ratatui" [dev-dependencies.anyhow] version = "1.0" [dev-dependencies.criterion] version = "0.5" [dev-dependencies.pretty_assertions] version = "1.4.0" [features] default = [ "zero-copy", "simd", ] simd = ["dep:simdutf8"] zero-copy = []