Skip to content

Commit 4f6fc31

Browse files
authored
Merge pull request #144 from RustCrypto/sha2/remove-git-based-dependencies
sha2: remove git-based dependences from Cargo.toml
2 parents f8a6e84 + 70f15dd commit 4f6fc31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sha2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ keywords = ["crypto", "sha2", "hash", "digest"]
1515
categories = ["cryptography", "no-std"]
1616

1717
[dependencies]
18-
digest = { version = "0.9.0-pre", git = "https://github.com/RustCrypto/traits" }
19-
block-buffer = { version = "0.7", git = "https://github.com/RustCrypto/utils" }
18+
digest = { version = "0.9.0-pre" }
19+
block-buffer = { version = "0.7" }
2020
fake-simd = "0.1"
2121
opaque-debug = "0.2"
2222
sha2-asm = { version = "0.5", optional = true }
2323
libc = { version = "0.2.68", optional = true }
2424

2525
[dev-dependencies]
26-
digest = { version = "0.9.0-pre", features = ["dev"], git = "https://github.com/RustCrypto/traits" }
26+
digest = { version = "0.9.0-pre", features = ["dev"] }
2727
hex-literal = "0.1"
2828

2929
[features]

0 commit comments

Comments
 (0)