Skip to content

Commit

Permalink
Change Auth struct signature field to Vec<u8>
Browse files Browse the repository at this point in the history
  • Loading branch information
mnordstr committed Nov 2, 2024
1 parent 02bd0e9 commit 7ea1cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async-nats/src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub struct Auth {
pub jwt: Option<String>,
pub nkey: Option<String>,
pub(crate) signature_callback: Option<CallbackArg1<String, Result<String, AuthError>>>,
pub signature: Option<String>,
pub signature: Option<Vec<u8>>,
pub username: Option<String>,
pub password: Option<String>,
pub token: Option<String>,
Expand Down

0 comments on commit 7ea1cca

Please sign in to comment.