forked from mmstick/cargo-deb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (72 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
83 lines (72 loc) · 2.03 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "cargo-deb"
license = "MIT"
authors = ["Michael Aaron Murphy <mmstickman@gmail.com>", "Kornel Lesiński <kornel@geekhood.net>"]
categories = ["command-line-utilities", "development-tools::cargo-plugins", "development-tools::build-utils"]
description = "Make Debian packages (.deb) easily with a Cargo subcommand"
documentation = "https://docs.rs/cargo-deb"
homepage = "https://github.com/mmstick/cargo-deb#readme"
keywords = ["debian", "ubuntu", "package", "cargo", "subcommand"]
repository = "https://github.com/mmstick/cargo-deb"
readme = "README.md"
version = "1.32.0"
edition = "2018"
[package.metadata.deb]
maintainer = "Michael Aaron Murphy <mmstickman@gmail.com>"
copyright = "2016-2017, Michael Aaron Murphy, Kornel Lesiński"
license-file = ["LICENSE", "5"]
extended-description = """\
A simple subcommand for the Cargo package manager for \
building Debian packages from Rust projects."""
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
["target/release/cargo-deb", "usr/bin/", "755"],
["README.md", "usr/share/doc/cargo-deb/README", "644"],
]
[lib]
name = "cargo_deb"
path = "src/lib.rs"
doc = true
[[bin]]
name = "cargo-deb"
path = "src/main.rs"
doc = false
[badges]
travis-ci = { repository = "mmstick/cargo-deb" }
[dependencies]
getopts = "0.2.21"
md5 = "0.7.0"
quick-error = "2.0.1"
xz2 = { version = "0.1.6", optional = true }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.67"
tar = "0.4.37"
toml = "0.5.8"
zopfli = "0.4.0"
glob = "0.3.0"
ar = "0.9.0"
cargo_toml = "0.10.0"
rayon = "1.5.1"
regex = { version = "1.5.4", default-features = false, features = ["std"] }
itertools = "0.10.1"
num_cpus = { version = "1.13.0", optional = true }
[features]
default = ["lzma"]
lzma = ["xz2", "num_cpus"]
[profile.dev]
debug = 1
[profile.release]
lto = true
opt-level = 3
debug = false
[dev-dependencies]
tempdir = "0.3.7"
mockall = "0.10.2"
rstest = "0.11.0"
lazy_static = "1.4.0"
[workspace]
exclude = ["example"]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]