forked from PyO3/pyproject-toml-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
22 lines (19 loc) · 779 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
[package]
name = "pyproject-toml"
version = "0.10.0"
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]
indexmap = { version = "2.0.0", features = ["serde"] }
serde = { version = "1.0.125", features = ["derive"] }
toml = { version = "0.8.0", default-features = false, features = ["parse"] }
pep508_rs = { version = "0.4.2", features = ["serde"] }
pep440_rs = { version = "0.5.0", features = ["serde"] }
[features]
tracing = ["pep440_rs/tracing", "pep508_rs/tracing"]