-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
27 lines (23 loc) · 963 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
[package]
name = "commands"
version = "0.0.5"
authors = ["Bruce Mitchener <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "A command system for Rust. This provides a general command system which can be used in a variety of environments, including GUI applications and command line utilities. This is inspired by elements of the Lisp Machine, the Common Lisp Interface Manager (CLIM), router command line interfaces, and the TOPS-20 command line among other things."
keywords = ["argument", "cli", "command"]
categories = ["command-line-interface"]
homepage = "https://github.com/endoli/commands.rs"
repository = "https://github.com/endoli/commands.rs"
documentation = "https://docs.rs/commands/"
edition = "2021"
[[example]]
name = "linefeed"
path = "examples/linefeed/main.rs"
[[example]]
name = "rustyline"
path = "examples/rustyline/main.rs"
[dependencies]
[dev-dependencies]
linefeed = "0.6"
rustyline = "1"