nettext/Cargo.toml

23 lines
554 B
TOML
Raw Normal View History

[package]
name = "nettext"
description = "A text-based data format for cryptographic network protocols"
authors = ["Alex Auvolat <alex@adnab.me>"]
2023-11-15 00:46:48 +00:00
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"
2022-11-17 15:35:06 +00:00
base64 = "0.13"
hex = "0.4"
err-derive = "0.3"
2022-11-17 15:35:06 +00:00
2023-11-15 00:44:29 +00:00
dryoc = { version = "0.5", optional = true }
2022-11-18 13:15:30 +00:00
serde = { version = "1.0", optional = true, features = ["derive"] }
2022-11-17 15:35:06 +00:00
[features]
default = [ "dryoc", "serde" ]