-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 865 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 865 Bytes
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.13.0"
authors = [
"William Brown <william@blackhats.net.au>",
"James Hodgkinson <james@terminaloutcomes.com>",
]
repository = "https://github.com/kanidm/cbor"
license = "MIT OR Apache-2.0"
description = "CBOR support for Serde."
keywords = ["serde", "cbor", "serialization", "no_std"]
categories = ["encoding"]
edition = "2021"
rust-version = "1.81"
[badges]
maintenance = { status = "passively-maintained" }
[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"] }