-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
36 lines (32 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[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.6.2"
repository = "https://github.com/ericseppanen/cddl-cat"
license = "MIT"
authors = ["Eric Seppanen <[email protected]>"]
readme = "README.md"
edition = "2018"
rust-version = "1.48"
[features]
default = ["serde_json", "serde_cbor"]
[dependencies]
float-ord = "0.3.0"
serde_cbor = { version = "0.11.1", optional = true }
serde_json = { version = "1.0.0", optional = true }
serde = "1.0.97"
# nom's default-features are ["std", "lexical"].
nom = { version = "7.0.0", features = ["std"], default-features = false }
hex = "0.4.0"
strum_macros = "0.23.1"
escape8259 = "0.5.0"
base64 = "0.13.0"
thiserror = "1.0.8"
regex = "1.5.5"
[dev-dependencies]
serde = { version = "1.0.97", features = ["derive"] }
ntest = "0.7.1"
[package.metadata.release]
pre-release-commit-message = "release {{version}}"