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] 13rust-version = "1.19" 14name = "serde" 15version = "1.0.158" 16authors = [ 17 "Erick Tryzelaar <erick.tryzelaar@gmail.com>", 18 "David Tolnay <dtolnay@gmail.com>", 19] 20build = "build.rs" 21include = [ 22 "build.rs", 23 "src/**/*.rs", 24 "crates-io.md", 25 "README.md", 26 "LICENSE-APACHE", 27 "LICENSE-MIT", 28] 29description = "A generic serialization/deserialization framework" 30homepage = "https://serde.rs" 31documentation = "https://docs.rs/serde" 32readme = "crates-io.md" 33keywords = [ 34 "serde", 35 "serialization", 36 "no_std", 37] 38categories = [ 39 "encoding", 40 "no-std", 41] 42license = "MIT OR Apache-2.0" 43repository = "https://github.com/serde-rs/serde" 44 45[package.metadata.docs.rs] 46features = ["derive"] 47targets = ["x86_64-unknown-linux-gnu"] 48 49[package.metadata.playground] 50features = [ 51 "derive", 52 "rc", 53] 54 55[lib] 56doc-scrape-examples = false 57 58[dependencies.serde_derive] 59version = "=1.0.158" 60optional = true 61 62[dev-dependencies.serde_derive] 63version = "1.0" 64 65[features] 66alloc = [] 67default = ["std"] 68derive = ["serde_derive"] 69rc = [] 70std = [] 71unstable = [] 72