Skip to content

Commit

Permalink
expose algorithm name
Browse files Browse the repository at this point in the history
  • Loading branch information
junkurihara committed Feb 29, 2024
1 parent 7cf7884 commit 714bec6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[workspace.package]
edition = "2021"
version = "0.0.6"
version = "0.0.7"
authors = ["Jun Kurihara"]
homepage = "https://github.com/junkurihara/httpsig-rs"
repository = "https://github.com/junkurihara/httpsig-rs"
Expand Down
2 changes: 1 addition & 1 deletion httpsig-hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
httpsig = { path = "../httpsig", version = "0.0.6" }
httpsig = { path = "../httpsig", version = "0.0.7" }

thiserror = { version = "1.0.57" }
tracing = { version = "0.1.40" }
Expand Down
2 changes: 1 addition & 1 deletion httpsig/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub mod prelude {
}

pub use crate::{
crypto::{PublicKey, SecretKey, SharedKey, SigningKey, VerifyingKey},
crypto::{AlgorithmName, PublicKey, SecretKey, SharedKey, SigningKey, VerifyingKey},
error::{HttpSigError, HttpSigResult},
signature_base::{HttpSignature, HttpSignatureBase, HttpSignatureHeaders, HttpSignatureHeadersMap},
signature_params::HttpSignatureParams,
Expand Down

0 comments on commit 714bec6

Please sign in to comment.