Skip to content

Commit 1d5cf79

Browse files
committed
updated gitignore and Cargo
1 parent cd62d03 commit 1d5cf79

File tree

5 files changed

+35
-295
lines changed

5 files changed

+35
-295
lines changed

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
target/
22
*/target/
33
*/*/target/
4-
.idea
5-
.DS_Store

Cargo.lock

Lines changed: 24 additions & 81 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fsb/Cargo.toml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
[package]
2-
name = "fsb_rust"
2+
name = "fsb"
33
version = "0.1.0"
4-
authors = ["iquerejeta <querejeta.inigo@gmail.com>"]
4+
description = "FSB hash function"
5+
authors = ["RustCrypto Developers"]
6+
license = "MIT OR Apache-2.0"
7+
readme = "README.md"
58
edition = "2018"
6-
7-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9+
repository = "https://github.com/RustCrypto/hashes"
10+
keywords = ["crypto", "fsb", "hash", "digest"]
11+
categories = ["cryptography", "no-std"]
812

913
[dependencies]
1014
whirlpool = "0.9"
11-
digest = "0.9.0"
15+
digest = "0.9"
1216
block-buffer = { version = "0.9", features = ["block-padding"] }
13-
hex-literal = "0.3.1"
1417

1518
[dev-dependencies]
16-
rand = "0.7.3"
19+
hex-literal = "0.3.1"

0 commit comments

Comments
 (0)