-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (33 loc) · 1.02 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
[package]
authors = ["pjmp"]
categories = ["command-line-utilities", "development-tools::cargo-plugins"]
description = "A npm inspired cargo subcommand for listing and updating binaries installed in $CARGO_HOME/bin."
edition = "2021"
homepage = "https://github.com/pombadev/cargo-updater"
keywords = ["cargo", "cargo-subcommand"]
license = "MIT OR Apache-2.0"
name = "cargo-updater"
readme = "README.md"
repository = "https://github.com/pombadev/cargo-updater"
resolver = "2"
version = "0.21.0"
[dependencies]
anyhow = "1.0.75"
clap = {version = "4.4.3", default-features = false, features = [
"error-context",
"help",
"std",
"suggestions",
"usage",
]}
colored = "2.0.4"
semver = {version = "1.0.18", default-features = false, features = ["std"]}
term-table = "1.3.2"
time = {version = "0.3.28", features = ["parsing"], default-features = false}
ureq = {version = "2.7.1", features = ["json", "tls"], default-features = false}
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
panic = "abort"
strip = true