1[package] 2name = "ciborium" 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 = "serde implementation of CBOR using ciborium-basic" 10readme = "README.md" 11keywords = ["cbor", "serde"] 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-ll = { path = "../ciborium-ll", version = "0.2.0" } 24ciborium-io = { path = "../ciborium-io", version = "0.2.0", features = ["alloc"] } 25serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] } 26 27[dev-dependencies] 28serde_bytes = "0.11" 29rstest = "0.11" 30rand = "0.8" 31hex = "0.4" 32 33[features] 34default = ["std"] 35std = ["ciborium-io/std", "serde/std"] 36