cddl-cat 0.3.3

Parse CDDL schemas and validate CBOR or JSON serialized data
Documentation
[package]
name = "cddl-cat"
description = "Parse CDDL schemas and validate CBOR or JSON serialized data"
keywords = ["cddl", "cbor", "json"]
categories = ["encoding", "network-programming", "parser-implementations"]
version = "0.3.3"
repository = "https://github.com/ericseppanen/cddl-cat"
license = "MIT"
authors = ["Eric Seppanen <eds@reric.net>"]
readme = "README.md"
edition = "2018"

[features]
# The default set of optional packages. Most people will want to use these
# packages, but they are strictly optional. Note that `session` is not a package
# but rather another feature listed in this manifest.
default = ["serde_json", "serde_cbor"]

[dependencies]
float-ord = "0.2"
serde_cbor = { version = "0.11", optional = true }
serde_json = { version = "1.0", optional = true }
serde = "1.0"
# nom's default-features are ["std", "lexical"].
nom = { version = "5.1", features = ["std"], default-features = false }
hex = "0.4"
rustversion = "1.0"
strum_macros = "0.18"
escape8259 = "0.5"
base64 = "0.12"

[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
ntest = "0.7"

[package.metadata.release]
no-dev-version = true
pre-release-commit-message = "release {{version}}"