-
Notifications
You must be signed in to change notification settings - Fork 96
/
Cargo.toml
51 lines (46 loc) · 1.12 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
[package]
name = "cargo-outdated"
version = "0.15.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"
rust-version = "1.73.0" # MSRV
[[bin]]
name = "cargo-outdated"
[dependencies]
anyhow = "1.0"
cargo = "0.76.0"
env_logger = "0.10.0"
git2-curl = "0.19.0"
semver = "1.0.0"
serde = {version="1.0.114", features = ["derive"]}
serde_json = "1.0.56"
tabwriter = "1.2.1"
tempfile = "3.6"
toml = "0.8.6"
clap = { version = "4.1.4", features = ["derive"] }
strum = { version = "0.25.0", features = ["derive"] }
[features]
debug = []
vendored-openssl = ["cargo/vendored-openssl"]
default = []
[profile.release]
lto = true
[dev-dependencies]
pretty_assertions = "1.2.0"