1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
rust-version = "1.51.0"
name = "valuable-serde"
version = "0.1.0"
authors = ["Taiki Endo <te316e89@gmail.com>"]
description = "`serde::Serialize` implementation for `Valuable` types."
readme = "README.md"
keywords = ["valuable", "serialization", "serde", "no_std"]
categories = ["development-tools::debugging", "encoding"]
license = "MIT"
repository = "https://github.com/tokio-rs/valuable"
resolver = "2"
[dependencies.serde]
version = "1.0.103"
default-features = false
[dependencies.valuable]
version = "0.1"
default-features = false
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.serde_test]
version = "1"
[dev-dependencies.valuable]
version = "0.1"
features = ["derive"]
[features]
alloc = ["valuable/alloc", "serde/alloc"]
default = ["std"]
std = ["alloc", "valuable/std", "serde/std"]
|