-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 863 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
[package]
name = "nauman"
version = "1.1.2"
edition = "2021"
authors = ["Egor Dmitriev <[email protected]>"]
description = "A CI inspired approach for local job automation"
readme = "README.md"
repository = "https://github.com/EgorDm/nauman/"
license = "MIT"
categories = ["command-line-utilities", "development-tools"]
keywords = ["command-line", "task", "runner", "development", "utility"]
exclude = [".github"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
heck = "0.3.3"
anyhow = "1.0"
nix = "0.23"
colored = "2"
regex = "1"
lazy_static = "1.4.0"
chrono = "0.4"
clap = { version = "3.0.0-beta.4", features = ["derive"] }
dotenv = "0.15.0"
rand = { version = "0.8.4", features = ["small_rng"] }
prettytable-rs = "^0.8"
crossbeam-channel = "0.5"
[dev-dependencies]
test-case = "1.2.1"
[profile.release]
lto = true