File: Cargo.toml.orig

package info (click to toggle)
rust-python-pkginfo 0.6.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 472 kB
  • sloc: makefile: 2
file content (30 lines) | stat: -rw-r--r-- 925 bytes parent folder | download | duplicates (2)
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 <messense@icloud.com>"]
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"]