-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
34 lines (30 loc) · 907 Bytes
/
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
[package]
name = "serde_cbor_2"
version = "0.12.0-dev"
authors = [
"William Brown <[email protected]>",
"(Former) Pyfisch <[email protected]>",
"(Former) Steven Fackler <[email protected]>"
]
repository = "https://github.com/kanidm/cbor"
license = "MIT/Apache-2.0"
description = "CBOR support for Serde."
keywords = ["serde", "cbor", "serialization", "no_std"]
categories = ["encoding"]
edition = "2021"
rust-version = "1.70"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ["std"]
# Uses `alloc` library and adds support for vector functions with
# `no_std`.
alloc = ["serde/alloc"]
std = ["serde/std" ]
unsealed_read_write = []
tags = []
[dependencies]
half = { version = "2", default-features = false }
serde = { version = "1", default-features = false }
[dev-dependencies]
serde = { version = "1", default-features = false, features = ["derive"] }