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