forked from rustsec/rustsec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 891 Bytes
/
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
[package]
name = "cargo-audit"
description = "Audit Cargo.lock for crates with security vulnerabilities"
version = "0.8.0"
authors = ["Tony Arcieri <bascule@gmail.com>"]
license = "Apache-2.0 OR MIT"
homepage = "https://rustsec.org"
repository = "https://github.com/rustsec/cargo-audit"
readme = "README.md"
categories = ["development-tools"]
keywords = ["cargo-subcommand", "security", "audit", "vulnerability"]
edition = "2018"
[badges]
travis-ci = { repository = "rustsec/cargo-audit" }
maintenance = { status = "actively-developed" }
[dependencies]
abscissa_core = "0.3"
failure = "0.1"
gumdrop = "0.6"
home = "0.3"
lazy_static = "1"
platforms = "0.2"
rustsec = "0.12"
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1"
[dev-dependencies]
tempfile = "3"
[dev-dependencies.abscissa_core]
version = "0.3"
features = ["testing"]