reedline/Cargo.toml

26 lines
570 B
TOML
Raw Normal View History

2021-02-28 12:44:28 +03:00
[package]
name = "reedline"
version = "0.1.0"
authors = ["Jonathan Turner <jonathan.d.turner@gmail.com>"]
edition = "2018"
2021-04-10 00:24:10 +03:00
description = "A readline-like crate for CLI text input"
license = "MIT"
2021-02-28 12:44:28 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
doctest = false
[[bin]]
name = "reedline"
path = "src/main.rs"
2021-02-28 12:44:28 +03:00
[dependencies]
crossterm = "0.19.0"
unicode-segmentation = "1.7.1"
2021-03-18 20:39:23 +03:00
chrono = "0.4.19"
unicode-width = "0.1.8"
clipboard = { version = "0.5.0", optional = true }
[features]
system_clipboard = ["clipboard"]