-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 922 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 922 Bytes
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 = "cargo-nfpm"
version = "0.1.5"
edition = "2021"
rust-version = "1.79.0"
description = "A simple and lightweight Cargo plugin for using nFPM from Any Rust project"
license = "MIT OR Apache-2.0"
authors = ["Arvid Gerstmann <github@arvid.io>"]
homepage = "https://github.com/ragnarlab/cargo-nfpm"
repository = "https://github.com/ragnarlab/cargo-nfpm"
keywords = ["cargo", "subcommand", "cargo-subcommand", "packaging"]
categories = ["development-tools::cargo-plugins", "development-tools::build-utils", "command-line-utilities"]
readme = "README.md"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
toml = "0.9"
cargo_metadata = "0.22"
anyhow = "1"
camino = "1.1"
ureq = "3.1"
flate2 = "1.1"
tar = "0.4"
sha2 = "0.10"
hex = "0.4"
zip = "5"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1.3"
[build-dependencies]