fix: assign unique IDs to gist permanent links

This commit is contained in:
Aravinth Manivannan
2024-04-13 06:16:32 +05:30
parent defe361077
commit dcdc2051cc
4 changed files with 30 additions and 5 deletions

20
Cargo.lock generated
View File

@@ -924,6 +924,12 @@ version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "home"
version = "0.5.5"
@@ -1170,6 +1176,7 @@ dependencies = [
"sailfish",
"serde",
"serde_json",
"sha256",
"sled",
"syntect",
"url",
@@ -1963,6 +1970,19 @@ dependencies = [
"digest",
]
[[package]]
name = "sha256"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18278f6a914fa3070aa316493f7d2ddfb9ac86ebc06fa3b83bffda487e9065b0"
dependencies = [
"async-trait",
"bytes",
"hex",
"sha2",
"tokio",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"