nettext/Cargo.toml

23 lines
554 B
TOML

[package]
name = "nettext"
description = "A text-based data format for cryptographic network protocols"
authors = ["Alex Auvolat <alex@adnab.me>"]
version = "0.4.1"
edition = "2021"
license = "AGPL-3.0"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nom = "7.1"
base64 = "0.13"
hex = "0.4"
err-derive = "0.3"
dryoc = { version = "0.5", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
[features]
default = [ "dryoc", "serde" ]