-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
26 lines (23 loc) · 901 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
[package]
name = "pep440_rs"
version = "0.7.2"
description = "A library for python version numbers and specifiers, implementing PEP 440"
edition = "2021"
include = ["/src", "Changelog.md", "License-Apache", "License-BSD", "Readme.md", "pyproject.toml"]
# Same license as pypa/packaging where the tests are from
license = "Apache-2.0 OR BSD-2-Clause"
repository = "https://github.com/konstin/pep440-rs"
readme = "Readme.md"
[lib]
name = "pep440_rs"
crate-type = ["rlib", "cdylib"]
[dependencies]
serde = { version = "1.0.210", features = ["derive"] }
rkyv = { version = "0.8.8", optional = true }
tracing = { version = "0.1.40", optional = true }
unicode-width = { version = "0.2.0" }
unscanny = { version = "0.1.0" }
# Adds conversions from [`VersionSpecifiers`] to [`version_ranges::Ranges`]
version-ranges = { version = "0.1.1", optional = true }
[dev-dependencies]
indoc = { version = "2.0.5" }