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.13" 14name = "serde" 15version = "1.0.152" 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.playground] 46features = [ 47 "derive", 48 "rc", 49] 50 51[package.metadata.docs.rs] 52targets = ["x86_64-unknown-linux-gnu"] 53 54[lib] 55doc-scrape-examples = false 56 57[dependencies.serde_derive] 58version = "=1.0.152" 59optional = true 60 61[dev-dependencies.serde_derive] 62version = "1.0" 63 64[features] 65alloc = [] 66default = ["std"] 67derive = ["serde_derive"] 68rc = [] 69std = [] 70unstable = [] 71