-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (35 loc) · 1.27 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
[package]
name = "crevette"
description = "Converter for using cargo-crev reviews with cargo-vet"
keywords = ["cargo-vet", "crev2vet", "cargo-crev", "supply-chain", "security"]
categories = ["development-tools"]
authors = ["Kornel <[email protected]>"]
edition = "2021"
license = "MPL-2.0 OR MIT OR Apache-2.0"
repository = "https://github.com/crev-dev/crevette"
rust-version = "1.73"
version = "0.26.0"
readme = "README.md"
include = ["src/*.rs", "src/*/*.rs", "Cargo.toml", "README.md", "LICENSE-MIT"]
[dependencies]
crev-lib = "0.26"
crev-data = "0.26"
crev-wot = "0.26"
semver = "1.0.20"
serde = "1.0.193"
directories-next = "2.0.0"
toml_edit = { version = "0.22.0", features = ["serde"] }
cargo_author = { version = "1.0.6", optional = true }
flate2 = { version = "1.0.28", optional = true }
index-debcargo = { version = "2.0", optional = true }
index-guix = { version = "1.0.0", optional = true }
reqwest = { version = "0.12", features = ["blocking"], optional = true }
[features]
# Ability to export list of crates vetted by Debian
debcargo = ["dep:index-debcargo", "dep:cargo_author", "dep:reqwest", "dep:flate2"]
# Ability to export list of crates included in Guix
guix = ["dep:index-guix"]
[profile.dev.package]
sha1_smol.opt-level = 3
adler2.opt-level = 3
miniz_oxide.opt-level = 3