aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 04:56:28 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 04:56:28 +0000
commitb79ff8a96f525b23cec49f929f57a075a11e40f8 (patch)
treee20d9e63a28336194d5b0911fb192bace5528181 /Cargo.toml.orig
parentdc664daa7453b90660d637eef1db80482d24212d (diff)
parenta805a8f39c291e6e3d5595861041d2fb8d26d1b0 (diff)
downloadserde-b79ff8a96f525b23cec49f929f57a075a11e40f8.tar.gz
Change-Id: Iaa07606a47261fe23b76b9c10a09a72d7e8f137f
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig21
1 files changed, 12 insertions, 9 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 2cf4ca4..9c3bc58 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,25 +1,28 @@
[package]
name = "serde"
-version = "1.0.136" # remember to update html_root_url and serde_derive dependency
+version = "1.0.152" # remember to update html_root_url and serde_derive dependency
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"]
-rust-version = "1.15"
-license = "MIT OR Apache-2.0"
+build = "build.rs"
+categories = ["encoding", "no-std"]
description = "A generic serialization/deserialization framework"
+documentation = "https://docs.rs/serde"
homepage = "https://serde.rs"
-repository = "https://github.com/serde-rs/serde"
-documentation = "https://docs.serde.rs/serde/"
+include = ["build.rs", "src/**/*.rs", "crates-io.md", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["serde", "serialization", "no_std"]
-categories = ["encoding"]
+license = "MIT OR Apache-2.0"
readme = "crates-io.md"
-include = ["build.rs", "src/**/*.rs", "crates-io.md", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
-build = "build.rs"
+repository = "https://github.com/serde-rs/serde"
+rust-version = "1.13"
[dependencies]
-serde_derive = { version = "=1.0.136", optional = true, path = "../serde_derive" }
+serde_derive = { version = "=1.0.152", optional = true, path = "../serde_derive" }
[dev-dependencies]
serde_derive = { version = "1.0", path = "../serde_derive" }
+[lib]
+doc-scrape-examples = false
+
[package.metadata.playground]
features = ["derive", "rc"]