mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-25 19:47:55 +00:00
6fe01bc8e3
This prerelease contains the Serializer API changes intended for 0.8.0. It allows us to start merging PRs that use the new API.
26 lines
693 B
TOML
26 lines
693 B
TOML
[package]
|
|
name = "serde"
|
|
# DO NOT RELEASE ANY MORE 0.7 RELEASES FROM THIS BRANCH
|
|
# USE THE 0.7.x BRANCH
|
|
version = "0.8.0-rc1"
|
|
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
description = "A generic serialization/deserialization framework"
|
|
repository = "https://github.com/serde-rs/serde"
|
|
documentation = "https://serde-rs.github.io/serde/serde/"
|
|
readme = "../README.md"
|
|
keywords = ["serde", "serialization"]
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
|
|
std = []
|
|
nightly = []
|
|
alloc = ["nightly"]
|
|
collections = ["alloc"]
|
|
nightly-testing = ["clippy", "nightly", "std"]
|
|
|
|
[dependencies]
|
|
clippy = { version = "^0.*", optional = true }
|