Skip to content

Commit 767ed74

Browse files
authored
biscuit-auth 4.1.0 (#207)
* warnings * update changelog
1 parent 01ea14e commit 767ed74

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

biscuit-auth/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# not released
22

3+
# `4.1.0`
4+
35
- fix: typo in documentation (#190) (Rémi Duraffort)
46
- fix: include all authorizer facts and rules when using `Display` (#195) (Clément Delafargue)
57
- Add optional support for PEM/DER parsing (#204) (Baran Yildirim)

biscuit-auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "biscuit-auth"
3-
version = "4.0.0"
3+
version = "4.1.0"
44
description = "an authorization token with decentralized verification and offline attenuation"
55
authors = ["Geoffroy Couprie <[email protected]>"]
66
edition = "2018"

biscuit-auth/src/crypto/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ use ed25519_dalek::*;
1616

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

2224
/// pair of cryptographic keys used to sign a token's block

biscuit-auth/src/token/authorizer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ use std::{
2424
};
2525

2626
mod snapshot;
27-
pub use snapshot::*;
2827

2928
/// used to check authorization policies on a token
3029
///

0 commit comments

Comments
 (0)