forked from kbknapp/cargo-outdated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (48 loc) · 1.1 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "cargo-outdated"
version = "0.11.0"
authors = [
"Kevin K. <[email protected]>",
"Frederick Z. <[email protected]>",
"Ricky H. <[email protected]>",
]
categories = ["development-tools", "development-tools::cargo-plugins"]
edition = "2021"
exclude = ["*.png"]
keywords = [
"cargo",
"subcommand",
"dependencies",
"cargo-subcommand",
"deps",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/kbknapp/cargo-outdated.git"
description = "Cargo subcommand for displaying when dependencies are out of date"
[badges]
travis-ci = {repository = "kbknapp/cargo-outdated"}
[[bin]]
name = "cargo-outdated"
[dependencies]
anyhow = "1.0"
cargo = "0.60.0"
env_logger = "0.9.0"
git2-curl = "0.14.0"
semver = "1.0.0"
serde = {version="1.0.114", features = ["derive"]}
serde_derive = "1.0.114"
serde_json = "1.0.56"
tabwriter = "1.2.1"
tempfile = "3"
toml = "~0.5.0"
clap = "2.33.3"
[dependencies.termcolor]
optional = true
version = "1.0"
[features]
debug = ["termcolor"]
vendored-openssl = ["cargo/vendored-openssl"]
default = []
[profile.release]
lto = true