forked from heroku/buildpacks-deb-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (47 loc) · 1.49 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
[package]
name = "buildpacks-deb-packages"
edition = "2021"
rust-version = "1.76"
[build-dependencies]
toml_edit = "0.22"
[dependencies]
anyhow = "1"
apt-parser = "1"
ar = "0.9"
async-compression = { version = "0.4", default-features = false, features = ["tokio", "gzip", "zstd", "xz"] }
bon = "3"
bullet_stream = "0.3"
debversion = "0.4"
edit-distance = "2"
futures = { version = "0.3", default-features = false, features = ["io-compat"] }
indexmap = "2"
libcnb = { version = "=0.26.0", features = ["trace"] }
indoc = "2"
rayon = "1"
reqwest = { version = "0.12", default-features = false, features = ["stream", "rustls-tls"] }
reqwest-middleware = "0.4"
reqwest-retry = "0.7"
serde = { version = "1", features = ["derive"] }
sequoia-openpgp = { version = "1", default-features = false, features = ["crypto-rust", "allow-experimental-crypto", "allow-variable-time-crypto"] }
sha2 = "0.10"
tempfile = "3"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "time", "macros"] }
tokio-tar = "0.3"
tokio-util = { version = "0.7", default-features = false, features = ["compat", "io"] }
toml_edit = "0.22"
walkdir = "2"
libcnb-package = "0.26.0"
[dev-dependencies]
libcnb-package = "0.26.0"
libcnb-test = "=0.26.0"
regex = "1"
strip-ansi-escapes = "0.2"
buildpacks-deb-packages = { path = "." }
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "warn"
unused_crate_dependencies = "warn"
[lints.clippy]
panic_in_result_fn = "warn"
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"