multiline_input 0.2.0

Terminal multiline input with rich editing (ENTER to submit, CTRL+ENTER for newline)
Documentation
[dependencies.crossterm]
version = "0.29.0"

[dependencies.error_tools]
default-features = false
features = ["enabled", "error_typed"]
version = "~0.37.0"

[dependencies.unicode-segmentation]
version = "1.10"

[dependencies.unicode-width]
version = "0.2.2"

[dev-dependencies.tempfile]
version = "3.20.0"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "pre_filled"
path = "examples/pre_filled.rs"

[[example]]
name = "with_config"
path = "examples/with_config.rs"

[[example]]
name = "with_validation"
path = "examples/with_validation.rs"

[features]
color = []
default = ["enabled"]
enabled = []
full = ["enabled", "color"]

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

[package]
authors = ["wTools Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-interface", "text-editors"]
description = "Terminal multiline input with rich editing (ENTER to submit, CTRL+ENTER for newline)"
edition = "2021"
keywords = ["terminal", "input", "multiline", "cli", "interactive"]
license = "MIT"
name = "multiline_input"
readme = "README.md"
repository = "https://github.com/Wandalen/wTools"
version = "0.2.0"

[[test]]
name = "api_surface_test"
path = "tests/api_surface_test.rs"

[[test]]
name = "buffer_operations_test"
path = "tests/buffer_operations_test.rs"

[[test]]
name = "builder_config_test"
path = "tests/builder_config_test.rs"

[[test]]
name = "error_paths_test"
path = "tests/error_paths_test.rs"

[[test]]
name = "integration_workflows_test"
path = "tests/integration_workflows_test.rs"

[[test]]
name = "key_handling_test"
path = "tests/key_handling_test.rs"

[[test]]
name = "render_config_test"
path = "tests/render_config_test.rs"

[[test]]
name = "terminal_basic_test"
path = "tests/terminal_basic_test.rs"

[[test]]
name = "validation_test"
path = "tests/validation_test.rs"