Skip to content

Commit

Permalink
feat(hsh): ✨ updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed Nov 5, 2023
1 parent c91a355 commit 1f83f42
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .deepsource.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ version = 1
name = "rust"
enabled = true

[analyzers.meta]
msrv = "stable"
[analyzers.meta]
msrv = "stable"
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 9 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
authors = ["Sebastien Rousseau <sebastian.rousseau@gmail.com>"]
authors = ["Hash (HSH) Contributors"]
build = "build.rs"
categories = [
"algorithms",
Expand All @@ -8,16 +8,19 @@ categories = [
"data-structures",
"encoding",
]
description = "Quantum-Resistant Cryptographic Hash Library for Password Encryption and Verification in Rust"
description = """
Quantum-Resistant Cryptographic Hash Library for Password Encryption and
Verification in Rust.
"""
documentation = "https://docs.rs/hsh"
edition = "2021"
exclude = ["/.git/*", "/.github/*", "/.gitignore", "/.vscode/*"]
homepage = "https://minifunctions.com/"
homepage = "https://hshlib.one/"
keywords = ["argon2", "argon2i", "hash", "password", "security"]
license = "MIT OR Apache-2.0"
name = "hsh"
repository = "https://github.com/sebastienrousseau/hsh/"
rust-version = "1.69.0"
rust-version = "1.71.1"
version = "0.0.7"
include = [
"/CONTRIBUTING.md",
Expand Down Expand Up @@ -50,13 +53,13 @@ path = "examples/hsh.rs"

[dependencies]
argon2rs = "0.2.5"
base64 = "0.21.4"
base64 = "0.21.5"
bcrypt = "0.15.0"
dtt = "0.0.4"
log = {version="0.4.20", features = ["std"] }
openssl = { version = "0.10.57", features = ["vendored"] }
scrypt = "0.11.0"
serde = { version = "1.0.188", features = ["derive"] }
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.107"
vrd = "0.0.4"

Expand Down
12 changes: 4 additions & 8 deletions build.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
// Copyright © 2023 Hash (HSH) library. All rights reserved.
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! The main function of the build script.
//! This is the main function for the build script.
//!
//! This function is executed when building the crate and performs certain tasks
//! necessary for the build process.
//!
//! It prints a "cargo:rerun-if-changed" directive to indicate that the build
//! should be re-run if the "build.rs" file is changed.
//! Currently, it only instructs Cargo to re-run this build script if `build.rs` is changed.
fn main() {
// println!("cargo:rerun-if-changed=src/lib.rs");
// Avoid unnecessary re-building.
println!("cargo:rerun-if-changed=build.rs");
}
}
2 changes: 1 addition & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ skip-tree = []
notice = "deny"
unmaintained = "deny"
unsound = "deny"
vulnerability = "deny"
vulnerability = "deny"

0 comments on commit 1f83f42

Please sign in to comment.