-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 883 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
38
[package]
name = "rhiz"
version = "0.6.0"
authors = [
"Nat Knight <[email protected]>",
"Dorian Scheidt <[email protected]>",
]
edition = "2018"
description = "A deliberately minimal task runner."
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://bitbucket.org/nathanielknight/rhiz/"
homepage = "https://bitbucket.org/nathanielknight/rhiz/"
documentation = "https://bitbucket.org/nathanielknight/rhiz/"
keywords = ["tool", "task", "windows", "linux"]
categories = ["command-line-utilities", "development-tools::build-utils"]
exclude = ["Rhizfile"]
[features]
default = ["glob"]
[dependencies]
pest = "^2.0"
pest_derive = "^2.0"
glob = {version = "^0.2", optional = true}
rayon = "1.0"
[[bin]]
name = "rhiz"
path = "src/bin/main.rs"
doc = false
test = true
required-features = ["glob"]
[badges]
maintenance = {status = "experimental"}