-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (30 loc) · 929 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 = "ea-command"
version = "0.2.1"
license = "MIT"
authors = ["Daniel Duan <[email protected]>"]
edition = "2018"
description = "Editor Alias: making paths in command line tools actionable."
documentation = "https://github.com/dduan/ea/blob/master/README.md"
exclude = ["/.github/*", "demo.gif", "flake.nix", "flake.lock", "/scripts/*", "/resources/*", "src/bin/printfile.rs"]
readme = "README.md"
homepage = "https://github.com/dduan/ea"
repository = "https://github.com/dduan/ea"
keywords = ["cli"]
categories = ["command-line-utilities"]
default-run = "ea"
[dependencies]
atty = '0.2.14'
bincode = '1.3.3'
clap = { version = "3.1.8", features = ["derive"] }
lazy_static = '1.4'
pty = '0.2'
regex = '1'
serde = { version = "1.0", features = ["derive"] }
guard = '0.5.1'
[build-dependencies]
clap = { version = "3.1.8", features = ["cargo"] }
clap_complete = "3.1"
[dev-dependencies]
assert_cmd = "2.0"
pty = '0.2'