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