# 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 = "liso" version = "1.2.1" authors = ["Solra Bizna "] description = "Line Input with Simultaneous Output: input lines are editable, output lines are never scrambled, and all of it thread safe." readme = "README.md" keywords = [ "readline", "command-line", "line-editing", ] categories = ["command-line-interface"] license = "MIT OR Apache-2.0" repository = "https://github.com/SolraBizna/liso" [dependencies.bitflags] version = "2.5.0" [dependencies.crossterm] version = "0.27.0" [dependencies.errno] version = "0.3.8" optional = true [dependencies.libc] version = "0.2.144" optional = true [dependencies.parking_lot] version = "0.12.2" optional = true [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.textwrap] version = "0.16.1" optional = true [dependencies.tokio] version = "1.37.0" features = [ "rt", "sync", "time", ] default-features = false [dependencies.unicode-width] version = "0.1.12" [features] capture-stderr = [ "dep:libc", "dep:errno", "dep:parking_lot", ] completion = [] default = [ "wrap", "history", "completion", "global", ] global = ["dep:parking_lot"] history = [] serde = [ "dep:serde", "bitflags/serde", ] wrap = ["dep:textwrap"] [target."cfg(unix)".dependencies.libc] version = "0.2.144"