forked from nushell/reedline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 781 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "reedline"
version = "0.2.0"
authors = ["JT <jonathan.d.turner@gmail.com>"]
edition = "2018"
description = "A readline-like crate for CLI text input"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
doctest = true
[[bin]]
name = "reedline"
path = "src/main.rs"
[dependencies]
chrono = "0.4.19"
clipboard = { version = "0.5.0", optional = true }
crossterm = { version = "0.22.1", features = ["serde"] }
nu-ansi-term = "0.39.0"
serde = { version = "1.0", features = ["derive"] }
unicode-segmentation = "1.7.1"
unicode-width = "0.1.8"
strip-ansi-escapes = "0.1.1"
[dev-dependencies]
tempfile = "3.2.0"
pretty_assertions = "1.0.0"
rstest = "0.11.0"
[features]
system_clipboard = ["clipboard"]