forked from zyansheep/rustyline-async
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 783 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
[package]
name = "rustyline-async"
version = "0.4.3"
license = "Unlicense"
description = "A minimal readline with multiline and async support."
documentation = "https://docs.rs/rustyline-async"
repository = "https://github.com/zyansheep/rustyline-async"
readme = "README.md"
edition = "2021"
[dependencies]
crossterm = { version = "0.28.1", features = ["event-stream"] }
futures-channel = "0.3"
futures-util = { version = "0.3", features = ["io"] }
pin-project = "1.0"
thingbuf = "0.1"
thiserror = "2.0.3"
unicode-segmentation = "1.10"
unicode-width = "0.2.0"
[dev-dependencies]
async-std = { version = "1.12.0", features = [ "unstable", "attributes" ] }
tokio = { version = "1", features = ["full"] }
log = "0.4.20"
simplelog = "0.12.1"
[features]
default = ["emacs"]
emacs = []