forked from jedrzejboczar/easy-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (25 loc) · 646 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (25 loc) · 646 Bytes
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
[package]
name = "mini_async_repl"
version = "0.2.1"
authors = ["Martin Verzilli <martin.verzilli@gmail.com", "Jędrzej Boczar <jedrzej.boczar@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "An async-first REPL"
repository = "https://github.com/mverzilli/mini-async-repl"
keywords = [
"repl",
"cli",
"shell",
"interactive",
"async",
]
categories = ["command-line-interface"]
[dependencies]
rustyline = "9.0"
rustyline-derive = "0.6"
thiserror = "1.0"
anyhow = "1.0"
textwrap = "0.15"
trie-rs = "0.1"
shell-words = "1.0"
tokio = { version = "1.34.0", features = ["macros", "rt", "rt-multi-thread"] }