reduce unnecessary re-exports

This commit is contained in:
Alex 2023-11-15 01:46:48 +01:00
parent 147f882ad5
commit 31c20c3a03
3 changed files with 6 additions and 4 deletions

2
Cargo.lock generated
View File

@ -209,7 +209,7 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]] [[package]]
name = "nettext" name = "nettext"
version = "0.4.0" version = "0.4.1"
dependencies = [ dependencies = [
"base64", "base64",
"dryoc", "dryoc",

View File

@ -2,7 +2,7 @@
name = "nettext" name = "nettext"
description = "A text-based data format for cryptographic network protocols" description = "A text-based data format for cryptographic network protocols"
authors = ["Alex Auvolat <alex@adnab.me>"] authors = ["Alex Auvolat <alex@adnab.me>"]
version = "0.4.0" version = "0.4.1"
edition = "2021" edition = "2021"
license = "AGPL-3.0" license = "AGPL-3.0"
readme = "README.md" readme = "README.md"

View File

@ -1,7 +1,9 @@
//! Helpers to use cryptographic data types in nettext //! 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::dec;
use crate::enc; use crate::enc;