liso 1.3.4

Line Input with Simultaneous Output: input lines are editable, output lines are never scrambled, and all of it thread safe.
Documentation
# 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.3.4"
authors = ["Solra Bizna <solra@bizna.name>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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"

[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",
]
windows = ["dep:windows"]
wrap = ["dep:textwrap"]

[lib]
name = "liso"
path = "src/lib.rs"

[dependencies.bitflags]
version = "2.5.0"

[dependencies.errno]
version = "0.3.8"
optional = true

[dependencies.libc]
version = "0.2.172"
optional = true

[dependencies.nix]
version = "0.30"
optional = true

[dependencies.parking_lot]
version = "0.12.2"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.termsize]
version = "0.1.9"

[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.2"

[dependencies.windows]
version = "0.62"
optional = true

[target."cfg(unix)".dependencies.nix]
version = "0.29"
features = [
    "fs",
    "pthread",
    "signal",
    "term",
]

[target."cfg(windows)".dependencies.libc]
version = "0.2.172"

[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
    "Win32_System_Threading",
    "Win32_System_Console",
    "Win32_UI_Input_KeyboardAndMouse",
]