Skip to content

Commit

Permalink
chore: Switch to sha1 crate (#2056)
Browse files Browse the repository at this point in the history
  • Loading branch information
stoically authored Aug 17, 2022
1 parent 956d8a8 commit 26f60d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions sqlx-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ postgres = [
"md-5",
"sha2",
"base64",
"sha-1",
"sha1",
"rand",
"hmac",
"futures-channel/sink",
Expand All @@ -36,7 +36,7 @@ postgres = [
"hkdf"
]
mysql = [
"sha-1",
"sha1",
"sha2",
"generic-array",
"num-bigint",
Expand Down Expand Up @@ -154,7 +154,7 @@ rustls = { version = "0.20.1", features = ["dangerous_configuration"], optional
rustls-pemfile = { version = "1.0", optional = true }
serde = { version = "1.0.132", features = ["derive", "rc"], optional = true }
serde_json = { version = "1.0.73", features = ["raw_value"], optional = true }
sha-1 = { version = "0.10.0", default-features = false, optional = true }
sha1 = { version = "0.10.1", default-features = false, optional = true }
sha2 = { version = "0.10.0", default-features = false, optional = true }
sqlformat = "0.2.0"
thiserror = "1.0.30"
Expand Down

0 comments on commit 26f60d9

Please sign in to comment.