1[package] 2name = "ciborium-io" 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 = "Simplified Read/Write traits for no_std usage" 11readme = "README.md" 12keywords = ["io", "read", "write"] 13categories = ["data-structures", "embedded", "no-std"] 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[features] 24alloc = [] 25std = ["alloc"] 26 27[package.metadata.docs.rs] 28all-features = true 29