aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig14
1 files changed, 9 insertions, 5 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index ef65cdc..30ee98e 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,14 +1,15 @@
[package]
name = "semver"
-version = "1.0.6"
+version = "1.0.17"
authors = ["David Tolnay <dtolnay@gmail.com>"]
+categories = ["data-structures", "no-std"]
+description = "Parser and evaluator for Cargo's flavor of Semantic Versioning"
+documentation = "https://docs.rs/semver"
edition = "2018"
-rust-version = "1.31"
+keywords = ["cargo"]
license = "MIT OR Apache-2.0"
-description = "Parser and evaluator for Cargo's flavor of Semantic Versioning"
repository = "https://github.com/dtolnay/semver"
-documentation = "https://docs.rs/semver"
-readme = "README.md"
+rust-version = "1.31"
[features]
default = ["std"]
@@ -17,6 +18,9 @@ std = []
[dependencies]
serde = { version = "1.0", optional = true, default-features = false }
+[lib]
+doc-scrape-examples = false
+
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--cfg", "doc_cfg"]