-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (38 loc) · 1.08 KB
/
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
39
40
41
[package]
name = "haku"
version = "0.3.5"
authors = ["Vladimir Markelov <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "A command runner - a handy way to execute project specific tasks"
readme = "README.md"
categories = ["command-line-utilities"]
keywords = ["terminal", "cli", "utility", "command", "runner"]
repository = "https://github.com/VladimirMarkelov/haku"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
getopts = "0.2"
pest = "2.0"
pest_derive = "2.0"
target = "1.0"
thiserror = "1.0"
chrono = "0.4"
dirs = "2.0"
rand = "0.7"
unicode-width = "0.1"
regex = "1"
glob = "0.3"
semver = "0.9"
[package.metadata.deb]
section = "utility"
depends = "$auto"
priority = "optional"
assets = [
["target/release/haku", "usr/bin/", "755"],
["LICENSE", "usr/share/doc/haku/", "644"],
["docs/usage.md", "usr/share/doc/haku/README", "644"],
]
extended-description = """\
A command runner insipred by 'make' utility - a handy way to execute project- or directory-specific tasks.\
"""
changelog = "changelog"