Skip to content

Commit

Permalink
biscuit-auth 4.1.0 (#207)
Browse files Browse the repository at this point in the history
* warnings

* update changelog
  • Loading branch information
Geal authored Feb 13, 2024
1 parent 01ea14e commit 767ed74
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions biscuit-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# not released

# `4.1.0`

- fix: typo in documentation (#190) (Rémi Duraffort)
- fix: include all authorizer facts and rules when using `Display` (#195) (Clément Delafargue)
- Add optional support for PEM/DER parsing (#204) (Baran Yildirim)
Expand Down
2 changes: 1 addition & 1 deletion biscuit-auth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "biscuit-auth"
version = "4.0.0"
version = "4.1.0"
description = "an authorization token with decentralized verification and offline attenuation"
authors = ["Geoffroy Couprie <contact@geoffroycouprie.com>"]
edition = "2018"
Expand Down
4 changes: 3 additions & 1 deletion biscuit-auth/src/crypto/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ use ed25519_dalek::*;

use nom::Finish;
use rand_core::{CryptoRng, RngCore};
use std::{convert::TryInto, fmt::Display, hash::Hash, ops::Drop, path::Path, str::FromStr};
#[cfg(feature = "pem")]
use std::path::Path;
use std::{convert::TryInto, fmt::Display, hash::Hash, ops::Drop, str::FromStr};
use zeroize::Zeroize;

/// pair of cryptographic keys used to sign a token's block
Expand Down
1 change: 0 additions & 1 deletion biscuit-auth/src/token/authorizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ use std::{
};

mod snapshot;
pub use snapshot::*;

/// used to check authorization policies on a token
///
Expand Down

0 comments on commit 767ed74

Please sign in to comment.