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 believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14name = "serde" 15version = "1.0.125" 16authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>", "David Tolnay <dtolnay@gmail.com>"] 17build = "build.rs" 18include = ["build.rs", "src/**/*.rs", "crates-io.md", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] 19description = "A generic serialization/deserialization framework" 20homepage = "https://serde.rs" 21documentation = "https://docs.serde.rs/serde/" 22readme = "crates-io.md" 23keywords = ["serde", "serialization", "no_std"] 24categories = ["encoding"] 25license = "MIT OR Apache-2.0" 26repository = "https://github.com/serde-rs/serde" 27[package.metadata.docs.rs] 28targets = ["x86_64-unknown-linux-gnu"] 29 30[package.metadata.playground] 31features = ["derive", "rc"] 32[dependencies.serde_derive] 33version = "=1.0.125" 34optional = true 35[dev-dependencies.serde_derive] 36version = "1.0" 37 38[features] 39alloc = [] 40default = ["std"] 41derive = ["serde_derive"] 42rc = [] 43std = [] 44unstable = [] 45