bp7 0.10.6

Rust implementation of dtn Bundle Protocol Version 7 ([RFC 9171]
Documentation
[[bench]]
harness = false
name = "benchmark"

[[bin]]
name = "bp7"
required-features = ["binary-build"]
[dependencies.bitflags]
version = "2.2.1"

[dependencies.crc]
version = "3.0.1"

[dependencies.humantime]
version = "2.1.0"

[dependencies.serde]
features = ["derive"]
version = "1.0.193"

[dependencies.serde_bytes]
version = "0.11.5"

[dependencies.serde_cbor]
version = "0.11.1"

[dependencies.serde_json]
version = "1.0.61"

[dependencies.thiserror]
version = "1.0.23"
[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.test-case]
version = "3.3.1"

[features]
benchmark-helpers = ["instant"]
binary-build = ["instant"]
default = ["binary-build"]

[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
name = "bp7"

[package]
authors = ["Lars Baumgaertner <baumgaertner@cs.tu-darmstadt.de>"]
categories = ["encoding"]
description = "Rust implementation of dtn Bundle Protocol Version 7 ([RFC 9171]"
edition = "2018"
license = "MIT OR Apache-2.0"
name = "bp7"
readme = "README.md"
repository = "https://github.com/dtn7/bp7-rs"
version = "0.10.6"
[profile.release]
lto = true
[target."cfg(not(target_arch = \"wasm32\"))".dependencies.instant]
features = ["now"]
optional = true
version = "0.1.9"

[target."cfg(not(target_arch = \"wasm32\"))".dependencies.nanorand]
default-features = true
version = "0.7.0"
[target."cfg(target_arch = \"wasm32\")".dependencies.instant]
features = ["stdweb", "now"]
optional = true
version = "0.1.9"

[target."cfg(target_arch = \"wasm32\")".dependencies.nanorand]
features = ["getrandom"]
version = "0.7.0"

[target."cfg(target_arch = \"wasm32\")".dependencies.stdweb]
version = "0.4.20"