-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (24 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
31 lines (24 loc) · 719 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
[package]
name = "minicbor-ser"
version = "0.1.4"
edition = "2018"
authors = ["oh-wind"]
description = "A simple implementation of serde for minicbor"
repository = "https://github.com/oh-wind/minicbor-ser"
license = "MIT"
keywords = ["cbor", "serde", "minicbor", "binary"]
categorys = ["encoding"]
readme = "README.md"
[package.metadata.docs.rs]
features = ["std"]
[dependencies]
serde = {version = "1.0.*", default-features = false}
[dependencies.minicbor]
version = "~0.18"
features = ["alloc"]
[dev-dependencies]
serde = {version = "1.0.*", default-features = false, features = ["derive"]}
[features]
std = ["serde/std", "minicbor/std", "alloc"]
alloc = [ "serde/alloc" ,"minicbor/alloc" ]
default = [ "std" ]