77 lines
1.6 KiB
TOML
77 lines
1.6 KiB
TOML
# 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"
|
|
name = "postcard"
|
|
version = "1.0.8"
|
|
authors = ["James Munns <james@onevariable.com>"]
|
|
description = "A no_std + serde compatible message library for Rust"
|
|
documentation = "https://docs.rs/postcard/"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"serde",
|
|
"cobs",
|
|
"framing",
|
|
]
|
|
categories = [
|
|
"embedded",
|
|
"no-std",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/jamesmunns/postcard"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = [
|
|
"--cfg",
|
|
"doc_cfg",
|
|
]
|
|
|
|
[dependencies.cobs]
|
|
version = "0.2.3"
|
|
default-features = false
|
|
path = "../cobs-0.2.3/"
|
|
|
|
[dependencies.serde]
|
|
default-features = false
|
|
path = "../serde-1.0.203"
|
|
|
|
[dependencies.core]
|
|
version = "1.0.0"
|
|
optional = true
|
|
package = "rustc-std-workspace-core"
|
|
|
|
[dependencies.alloc]
|
|
version = "1.0.0"
|
|
optional = true
|
|
package = "rustc-std-workspace-alloc"
|
|
|
|
[dependencies.compiler_builtins]
|
|
version = "0.1"
|
|
optional = true
|
|
|
|
[features]
|
|
alloc = [
|
|
"serde/alloc",
|
|
"dep:alloc"
|
|
]
|
|
use-std = [
|
|
"serde/std",
|
|
"alloc",
|
|
]
|
|
rustc-dep-of-std = [
|
|
"core",
|
|
"compiler_builtins",
|
|
"cobs/rustc-dep-of-std",
|
|
"serde/rustc-dep-of-std",
|
|
]
|