forked from kkawakam/rustyline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.19 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "rustyline"
version = "5.0.1"
authors = ["Katsu Kawakami <[email protected]>"]
edition = "2018"
description = "Rustyline, a readline implementation based on Antirez's Linenoise"
documentation = "http://docs.rs/rustyline"
repository = "https://github.com/kkawakam/rustyline"
readme = "README.md"
keywords = ["readline"]
license = "MIT"
categories = ["command-line-interface"]
[badges]
travis-ci = { repository = "kkawakam/rustyline" }
appveyor = { repository = "kkawakam/rustyline" }
maintenance = { status = "actively-developed" }
[dependencies]
dirs = { version = "2.0", optional = true }
libc = "0.2"
log = "0.4"
unicode-width = "0.1"
unicode-segmentation = "1.0"
memchr = "2.0"
[target.'cfg(unix)'.dependencies]
nix = "0.14"
utf8parse = "0.1"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["consoleapi", "handleapi", "minwindef", "processenv", "winbase", "wincon", "winuser"] }
[dev-dependencies]
env_logger = "0.6"
tempdir = "0.3"
assert_matches = "1.2"
[features]
default = ["with-dirs"]
with-dirs = ["dirs"]
[package.metadata.docs.rs]
features = ["with-dirs"]
all-features = false
no-default-features = true
default-target = "x86_64-unknown-linux-gnu"