-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
30 lines (26 loc) · 925 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
[package]
name = "python-pkginfo"
version = "0.6.5"
authors = ["messense <[email protected]>"]
edition = "2021"
description = "Parse Python package metadata from sdist and bdists and etc."
keywords = ["python", "pkginfo", "metadata"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/PyO3/python-pkginfo-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bzip2 = { version = "0.4.4", optional = true }
flate2 = "1.0.33"
fs-err = "3.0.0"
mailparse = "0.15"
rfc2047-decoder = "1.0.6"
serde = { version = "1.0.210", features = ["derive"], optional = true }
tar = "0.4.41"
thiserror = "2.0.3"
xz = { package = "xz2", version = "0.1.7", optional = true }
zip = { version = ">=0.6,<3", default-features = false, features = ["deflate"] }
[dev-dependencies]
serde_json = "1.0.128"
[features]
deprecated-formats = ["bzip2", "xz", "zip/bzip2"]