[package] name = "pep440_rs" version = "0.3.6" 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] lazy_static = "1.4.0" pyo3 = { version = "0.18.2", optional = true, features = ["extension-module", "abi3-py37"] } regex = { version = "1.7.0", default-features = false, features = ["std", "perf", "unicode-case", "unicode-perl"] } serde = { version = "1.0.150", features = ["derive"], optional = true } tracing = "0.1.37" unicode-width = "0.1.10" [dev-dependencies] indoc = "2.0.1" [package.metadata.maturin] name = "pep440_rs._pep440_rs"