1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.31" 15name = "semver" 16version = "1.0.23" 17authors = ["David Tolnay <[email protected]>"] 18build = "build.rs" 19autobins = false 20autoexamples = false 21autotests = false 22autobenches = false 23description = "Parser and evaluator for Cargo's flavor of Semantic Versioning" 24documentation = "https://docs.rs/semver" 25readme = "README.md" 26keywords = ["cargo"] 27categories = [ 28 "data-structures", 29 "no-std", 30] 31license = "MIT OR Apache-2.0" 32repository = "https://github.com/dtolnay/semver" 33 34[package.metadata.docs.rs] 35rustdoc-args = [ 36 "--cfg", 37 "doc_cfg", 38 "--generate-link-to-definition", 39] 40targets = ["x86_64-unknown-linux-gnu"] 41 42[lib] 43name = "semver" 44path = "src/lib.rs" 45doc-scrape-examples = false 46 47[[test]] 48name = "test_version_req" 49path = "tests/test_version_req.rs" 50 51[[test]] 52name = "test_identifier" 53path = "tests/test_identifier.rs" 54 55[[test]] 56name = "test_autotrait" 57path = "tests/test_autotrait.rs" 58 59[[test]] 60name = "test_version" 61path = "tests/test_version.rs" 62 63[[bench]] 64name = "parse" 65path = "benches/parse.rs" 66 67[dependencies.serde] 68version = "1.0.194" 69optional = true 70default-features = false 71 72[features] 73default = ["std"] 74std = [] 75