[package]
edition = "2021"
name = "capsule-lib"
version = "1.0.0"
authors = ["Alexander R. Croft"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library for reading and writing Capsule container files"
homepage = "https://github.com/frogfishio/capsule/"
documentation = "https://docs.rs/capsule-lib"
readme = "README.md"
keywords = [
"capsule",
"container",
"framing",
"cbor",
"base64",
]
categories = [
"encoding",
"parser-implementations",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/frogfishio/capsule/"
[features]
default = []
[lib]
name = "capsule_lib"
path = "src/lib.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.crc32fast]
version = "1.4"
[dependencies.data-encoding]
version = "2.6"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_cbor]
version = "0.11"
[dependencies.thiserror]
version = "2"