Skip to content

Commit

Permalink
make NoiseConfigData public
Browse files Browse the repository at this point in the history
Difficult otherwise to make external implementation of NoiseConfig
trait.
  • Loading branch information
benma committed Sep 19, 2023
1 parent 3859b52 commit f1dbc7e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bitbox-api"
authors = ["Marko Bencun <[email protected]>"]
version = "0.1.5"
version = "0.1.6"
homepage = "https://bitbox.swiss/"
repository = "https://github.com/digitalbitbox/bitbox-api-rs/"
readme = "README-rust.md"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ use std::sync::Mutex;

pub use keypath::Keypath;
pub use noise::PersistedNoiseConfig;
pub use noise::{NoiseConfig, NoiseConfigNoCache};
pub use noise::{NoiseConfig, NoiseConfigData, NoiseConfigNoCache};

use communication::HwwCommunication;

Expand Down

0 comments on commit f1dbc7e

Please sign in to comment.