reduce unnecessary re-exports
This commit is contained in:
parent
147f882ad5
commit
31c20c3a03
3 changed files with 6 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -209,7 +209,7 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|||
|
||||
[[package]]
|
||||
name = "nettext"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"dryoc",
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name = "nettext"
|
||||
description = "A text-based data format for cryptographic network protocols"
|
||||
authors = ["Alex Auvolat <alex@adnab.me>"]
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
edition = "2021"
|
||||
license = "AGPL-3.0"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
//! Helpers to use cryptographic data types in nettext
|
||||
|
||||
pub use dryoc::types::Bytes;
|
||||
pub use dryoc::*;
|
||||
pub use dryoc;
|
||||
|
||||
use dryoc::types::Bytes;
|
||||
use dryoc::*;
|
||||
|
||||
use crate::dec;
|
||||
use crate::enc;
|
||||
|
|
Loading…
Reference in a new issue