Skip to content

Commit

Permalink
Merge pull request #9 from sebastienrousseau/feat/hsh
Browse files Browse the repository at this point in the history
feat(hsh): v0.0.4
  • Loading branch information
sebastienrousseau authored May 16, 2023
2 parents a439d67 + 6dd768d commit 64d3f80
Show file tree
Hide file tree
Showing 18 changed files with 1,718 additions and 762 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: 🧪 Release
on: [push, pull_request]

jobs:

# Build the project for all the targets and generate artifacts.
build:
# This job builds the project for all the targets and generates a
Expand Down
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,4 @@ If you've identified a bug or have a specific code improvement in mind, we welco

We hope that this guide has been helpful in explaining how you can contribute to Hash (HSH). Thank you for your interest and involvement in our project!

[1]: https://github.com/sebastienrousseau/dtt
[2]: https://github.com/sebastienrousseau/dtt/issues/new
120 changes: 111 additions & 9 deletions Cargo.lock

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

33 changes: 24 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
[package]
authors = ["Sebastien Rousseau <[email protected]"]
categories = ["algorithms", "data-structures", "cryptography"]
description = "Quantum-Resistant Cryptographic Hash Library for Password Hashing and Verification in Rust"
authors = ["Sebastien Rousseau <[email protected]>"]
build = "build.rs"
categories = [
"algorithms",
"authentication",
"cryptography",
"data-structures",
"encoding",
]
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/"
keywords = ["argon2rs", "hash", "hashing-algorithm", "hsh", "post-quantum"]
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"
version = "0.0.3"
version = "0.0.4"
include = [
"/CONTRIBUTING.md",
"/LICENSE-APACHE",
Expand All @@ -30,20 +39,26 @@ members = ["xtask"]
[[bench]]
name = "benchmark"
harness = false
path = "benches/hsh.rs"
path = "benches/criterion.rs"

[profile.bench]
debug = true

[[example]]
name = "hsh"
path = "examples/hsh.rs"

[dependencies]
argon2rs = "0.2.5"
base64 = "0.21.0"
bcrypt = "0.14.0"
scrypt = "0.11.0"
serde = { version = "1.0.162", features = ["derive"] }
vrd = "0.0.1"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
vrd = "0.0.4"

[dev-dependencies]
assert_cmd = "2.0.11"
criterion = "0.4.0"

[lib]
Expand All @@ -65,7 +80,7 @@ incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
panic = 'unwind'
rpath = false
strip = false

Expand Down
Loading

0 comments on commit 64d3f80

Please sign in to comment.