-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (40 loc) · 1015 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
39
40
41
42
[package]
name = "furnel"
version = "0.1.0"
authors = ["Kristian Thy <[email protected]>"]
edition = "2021"
rust-version = "1.56.1"
description = "A command-line utility to compress files using the brotli algorithm"
readme = "README.md"
repository = "https://github.com/pyxy-dk/furnel"
license = "MIT"
keywords = [
"br",
"brotli",
"compression",
"web",
"webpack",
]
categories = [
"command-line-utilities",
"compression",
"development-tools::build-utils",
"encoding",
"filesystem",
]
[dependencies]
brotli = "3.3.3"
clap = { version = "3.0.10", features = ["derive"] }
glob = "0.3.0"
[package.metadata.deb]
features = []
section = "utils"
assets = [
["target/release/furnel", "usr/bin/", "755"],
["CHANGELOG.md", "usr/share/doc/furnel/NEWS", "644"],
["README.md", "usr/share/doc/furnel/README", "644"],
# ["doc/furnel.1", "usr/share/man/man1/furnel.1", "644"],
]
extended-description = """\
furnel is a command-line utility to compress files using the brotli algorithm.
"""