-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
28 lines (24 loc) · 877 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
[package]
name = "pyproject-toml"
version = "0.13.4"
description = "pyproject.toml parser in Rust"
edition = "2021"
license = "MIT"
keywords = ["pyproject", "pep517", "pep518", "pep621", "pep639"]
readme = "README.md"
repository = "https://github.com/PyO3/pyproject-toml-rs.git"
rust-version = "1.64"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glob = { version = "0.3.1", optional = true }
indexmap = { version = "2.6.0", features = ["serde"] }
pep440_rs = { version = "0.7.2" }
pep508_rs = { version = "0.9.1" }
serde = { version = "1.0.214", features = ["derive"] }
thiserror = { version = "1.0.65" }
toml = { version = "0.8.19", default-features = false, features = ["parse"] }
[features]
tracing = ["pep440_rs/tracing", "pep508_rs/tracing"]
pep639-glob = ["glob"]
[dev-dependencies]
insta = "1.41.0"