-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.29 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
[package]
name = "dependency-check-updates"
version = "0.1.4"
description = "Fast multi-ecosystem dependency updater: package.json, Cargo.toml, pyproject.toml in a single CLI (like npm-check-updates for every language)"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
readme.workspace = true
keywords.workspace = true
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "dependency-check-updates"
path = "src/main.rs"
[dependencies]
dependency-check-updates-core.workspace = true
dependency-check-updates-node.workspace = true
dependency-check-updates-rust.workspace = true
dependency-check-updates-python.workspace = true
rustls.workspace = true
clap.workspace = true
serde_json.workspace = true
miette.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
futures.workspace = true
owo-colors.workspace = true
semver = "1.0"
[dev-dependencies]
wiremock.workspace = true
tokio = { workspace = true, features = ["rt-multi-thread"] }
tempfile.workspace = true
dependency-check-updates-node.workspace = true
dependency-check-updates-rust.workspace = true
dependency-check-updates-python.workspace = true
[lints]
workspace = true