blob: 52e165734a0dd332f356aedd24dd0705d5ca8005 [file] [log] [blame]
Jakub Kotur2af68aa2020-12-21 17:28:16 +01001[package]
2name = "serde_cbor"
Joel Galenson25708292021-09-22 11:19:11 -07003version = "0.11.2"
Jakub Kotur2af68aa2020-12-21 17:28:16 +01004authors = [
Joel Galenson25708292021-09-22 11:19:11 -07005 "Pyfisch <pyfisch@posteo.org>",
Jakub Kotur2af68aa2020-12-21 17:28:16 +01006 "Steven Fackler <sfackler@gmail.com>"]
7repository = "https://github.com/pyfisch/cbor"
8readme = "README.md"
9license = "MIT/Apache-2.0"
10description = "CBOR support for serde."
11keywords = ["serde", "cbor", "serialization", "no_std"]
12categories = ["encoding"]
13edition = "2018"
14
15[badges]
16travis-ci = { repository = "pyfisch/cbor" }
Joel Galenson25708292021-09-22 11:19:11 -070017maintenance = { status = "as-is" }
Jakub Kotur2af68aa2020-12-21 17:28:16 +010018
19[dependencies]
20half = "1.2.0"
21serde = { version = "1.0.14", default-features = false }
22
23[dev-dependencies]
24serde_derive = { version = "1.0.14", default-features = false }
25
26[features]
27default = ["std"]
28# Uses `alloc` library and adds support for vector functions with
29# `no_std`.
30alloc = ["serde/alloc"]
31std = ["serde/std" ]
32unsealed_read_write = []
33tags = []