Skip to content

Commit

Permalink
30 bump ring for riscv support (#33)
Browse files Browse the repository at this point in the history
* Update Cargo.toml

feat: bump ring to 0.17+ for RISCV support

This commit updates the ring dependency to version 0.17 or higher, which enables the build on RISC-V platforms. This is a new feature that adds support for a different architecture.

* Update mod.rs

fix: clippy issue

* Update Cargo.toml

chore: version bump to reflect dependency bump
  • Loading branch information
rrrodzilla authored Jan 19, 2024
1 parent bb10c55 commit d64e8bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rusty_paseto"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
readme = "readme.md"
authors = ["Roland Rodriguez <[email protected]>"]
Expand Down Expand Up @@ -50,7 +50,7 @@ p384 = { version = "0.11", optional = true }
chacha20 = { version = "0.8.1", optional = true }
blake2 = { version = "^0.9.2", optional = true }
chacha20poly1305 = { version = "^0.9.0", optional = true }
ring = { version = "^0.16", features = ["std"], optional = false }
ring = { version = "^0.17", features = ["std"], optional = false }
base64 = { version = "^0.13.0", optional = false }
hex = { version = "^0.4.3", optional = false }
serde = { version = "1.0.117", features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion src/generic/builders/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ mod generic_builder;
mod traits;
pub use error::GenericBuilderError;
pub use generic_builder::GenericBuilder;
pub use traits::*;
//pub use traits::*;

0 comments on commit d64e8bf

Please sign in to comment.