-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
65 lines (55 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "audit-filter"
version = "0.5.0"
authors = ["Greg Guthe <[email protected]>"]
exclude = [
"tests/fixtures/*",
"example/*",
"pkg/*",
"readme_usage.md",
"output_usage.sh",
]
edition = "2018"
# A short blurb about the package. This is not rendered in any format when
# uploaded to crates.io (aka this is not markdown).
description = "Filters npm audit output for use in CI"
# These URLs point to more information about the package. These are
# intended to be webviews of the relevant data, not necessarily compatible
# with VCS tools and the like.
documentation = "https://github.com/mozilla-services/audit-filter"
homepage = "https://github.com/mozilla-services/audit-filter"
repository = "https://github.com/mozilla-services/audit-filter"
# This points to a file under the package root (relative to this `Cargo.toml`).
# The contents of this file are stored and indexed in the registry.
# crates.io will render this file and place the result on the crate's page.
readme = "README.md"
# This is a list of up to five keywords that describe this crate. Keywords
# are searchable on crates.io, and you may choose any words that would
# help someone find this crate.
keywords = []
# This is a list of up to five categories where this crate would fit.
# Categories are a fixed list available at crates.io/category_slugs, and
# they must match exactly.
categories = []
# This is an SPDX 2.1 license expression for this package. Currently
# crates.io will validate the license provided against a whitelist of
# known license and exception identifiers from the SPDX license list
# 2.4. Parentheses are not currently supported.
#
# Multiple licenses can be separated with a `/`, although that usage
# is deprecated. Instead, use a license expression with AND and OR
# operators to get more explicit semantics.
license = "MPL-2.0"
[badges]
travis-ci = { repository = "mozilla-services/audit-filter", branch = "master" }
[dependencies]
serde_json = "1.0.68"
serde = "1.0.130"
serde_derive = "1.0.87"
docopt = "1.1.1"
failure = "0.1.8"
wasm-bindgen = "0.2"
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
lto = true