• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "ciborium-ll"
3version = "0.2.0"
4authors = ["Nathaniel McCallum <npmccallum@profian.com>"]
5license = "Apache-2.0"
6edition = "2021"
7homepage = "https://github.com/enarx/ciborium"
8repository = "https://github.com/enarx/ciborium"
9description = "Low-level CBOR codec primitives"
10readme = "README.md"
11keywords = ["cbor"]
12categories = ["data-structures", "embedded", "encoding", "no-std", "parsing"]
13
14[badges]
15# See https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
16github = { repository = "enarx/ciborium", workflow = "test" }
17#github = { repository = "enarx/ciborium", workflow = "lint" }
18maintenance = { status = "actively-developed" }
19is-it-maintained-issue-resolution = { repository = "enarx/ciborium" }
20is-it-maintained-open-issues = { repository = "enarx/ciborium" }
21
22[dependencies]
23ciborium-io = { path = "../ciborium-io", version = "0.2.0" }
24half = "1.6"
25
26[dev-dependencies]
27hex = "0.4"
28
29[features]
30alloc = []
31std = ["alloc"]
32