mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-28 02:17:55 +00:00
d1325862f7
Conflicts:
serde/Cargo.toml
serde_codegen/Cargo.toml
serde_derive/Cargo.toml
serde_test/Cargo.toml
testing/Cargo.toml
26 lines
663 B
TOML
26 lines
663 B
TOML
[package]
|
|
name = "serde"
|
|
version = "0.9.0-rc1"
|
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
description = "A generic serialization/deserialization framework"
|
|
homepage = "https://serde.rs"
|
|
repository = "https://github.com/serde-rs/serde"
|
|
documentation = "https://docs.serde.rs/serde/"
|
|
readme = "../README.md"
|
|
keywords = ["serde", "serialization"]
|
|
categories = ["encoding"]
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
|
|
std = []
|
|
unstable = []
|
|
alloc = ["unstable"]
|
|
collections = ["alloc"]
|
|
unstable-testing = ["clippy", "unstable", "std"]
|
|
|
|
[dependencies]
|
|
clippy = { version = "^0.*", optional = true }
|