forked from pyfisch/cbor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1.01 KB
/
Cargo.toml
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
[package]
name = "serde_cbor"
version = "0.10.3"
authors = [
"Pyfisch <[email protected]>",
"Steven Fackler <[email protected]>"]
repository = "https://github.com/pyfisch/cbor"
readme = "README.md"
license = "MIT/Apache-2.0"
description = "CBOR support for serde."
keywords = ["serde", "cbor", "serialization", "no_std"]
categories = ["encoding"]
edition = "2018"
[badges]
travis-ci = { repository = "pyfisch/cbor" }
maintenance = { status = "actively-developed" }
[dependencies]
byteorder = { version = "1.0.0", default-features = false }
# Starting with v1.4.0 half requires Rust v1.32 or newer
# serde_cbor v0.10.0 msrv is v1.31
# remove when next minor version is released
half = ">= 1.2.0, < 1.4.0"
serde = { version = "1.0.14", default-features = false }
[dev-dependencies]
serde_derive = { version = "1.0.14", default-features = false }
[features]
default = ["std"]
# Uses `alloc` library and adds support for vector functions with
# `no_std`.
alloc = ["serde/alloc"]
std = ["serde/std" ]
unsealed_read_write = []