-
Notifications
You must be signed in to change notification settings - Fork 34
/
Cargo.toml
37 lines (32 loc) · 905 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
34
35
36
37
[package]
name = "pier"
version = "0.1.6"
authors = ["Benjamin Scholtz", "Isak Johansson"]
license-file = "./LICENSE"
description = "A Linux script management tool"
homepage = "https://github.com/BenSchZA/pier"
documentation = "https://github.com/BenSchZA/pier/blob/master/README.md"
repository = "https://github.com/BenSchZA/pier.git"
keywords = ["cli", "productivity", "tool", "devops", "management"]
categories = ["command-line-utilities"]
edition = "2018"
autotests = false
[dependencies]
toml = "0.4"
serde = { version = '1.0.83', features = ['derive'] }
prettytable-rs = "^0.10"
enum-kinds = "0.4.1"
dirs = "2.0.2"
snafu = "0.5.0"
scrawl = "1.1.0"
structopt = "0.3"
tempfile = "3.1.0"
lazy_static = "1.4.0"
[dev-dependencies]
assert_cmd = "0.11.1"
predicates = "1.0"
assert_fs = "0.11"
serde = { version = '1.0.83', features = ['derive'] }
[[test]]
name = "integration"
path = "tests/tests.rs"