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 = "serde" 16version = "1.0.195" 17authors = [ 18 "Erick Tryzelaar <[email protected]>", 19 "David Tolnay <[email protected]>", 20] 21build = "build.rs" 22description = "A generic serialization/deserialization framework" 23homepage = "https://serde.rs" 24documentation = "https://docs.rs/serde" 25readme = "crates-io.md" 26keywords = [ 27 "serde", 28 "serialization", 29 "no_std", 30] 31categories = [ 32 "encoding", 33 "no-std", 34 "no-std::no-alloc", 35] 36license = "MIT OR Apache-2.0" 37repository = "https://github.com/serde-rs/serde" 38 39[package.metadata.docs.rs] 40features = [ 41 "derive", 42 "rc", 43 "unstable", 44] 45rustdoc-args = [ 46 "--cfg", 47 "doc_cfg", 48 "--generate-link-to-definition", 49] 50targets = ["x86_64-unknown-linux-gnu"] 51 52[package.metadata.playground] 53features = [ 54 "derive", 55 "rc", 56] 57 58[lib] 59doc-scrape-examples = false 60 61[dependencies.serde_derive] 62version = "1" 63optional = true 64 65[dev-dependencies.serde_derive] 66version = "1" 67 68[features] 69alloc = [] 70default = ["std"] 71derive = ["serde_derive"] 72rc = [] 73std = [] 74unstable = [] 75 76[target."cfg(any())".dependencies.serde_derive] 77version = "=1.0.195" 78