-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
34 lines (31 loc) · 912 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 = "rpm-repository"
version = "0.3.1"
edition = "2021"
rust-version = "1.75"
authors = ["Gregory Szorc <[email protected]>"]
license = "MPL-2.0"
description = "RPM repository interaction"
keywords = ["createrepo", "rpm", "packaging", "repomd", "yum"]
homepage = "https://github.com/indygreg/linux-packaging-rs"
repository = "https://github.com/indygreg/linux-packaging-rs.git"
readme = "README.md"
[dependencies]
digest = "0.10.7"
futures = "0.3.31"
hex = "0.4.3"
pin-project = "1.1.7"
serde = { version = "1.0.214", features = ["derive"] }
serde-xml-rs = "0.6.0"
sha-1 = "0.10.1"
sha2 = "0.10.8"
thiserror = "1.0.66"
tokio = { version = "1.41.0", features = ["macros"] }
url = "2.5.2"
[dependencies.async-compression]
version = "0.4.17"
features = ["futures-io", "gzip", "xz", "zstd"]
[dependencies.reqwest]
version = "0.12.9"
default-features = false
features = ["rustls-tls", "stream"]