diff options
author | Vincent Ambo <mail@tazj.in> | 2023-06-09T12·52+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-06-10T11·23+0000 |
commit | a970de336574e046e63763d93f9a70d5b1e8464b (patch) | |
tree | a700d4c1a983bd4a4be24b50c84d39351c732fdb /corp/rih/frontend/Cargo.lock | |
parent | d925ec34cd6625b211c4f5dfe66937d7f3d6a0d6 (diff) |
feat(corp/rih): add UUIDs to records from frontend r/6254
This UUID stays the same even if a user submits the form multiple times (unless they edit it manually in local storage, of course). Change-Id: I4190fbfeb1027ce8a8d87bc283099539e8722b39 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8733 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'corp/rih/frontend/Cargo.lock')
-rw-r--r-- | corp/rih/frontend/Cargo.lock | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/corp/rih/frontend/Cargo.lock b/corp/rih/frontend/Cargo.lock index b9d5c9c330d8..9be2ab384b43 100644 --- a/corp/rih/frontend/Cargo.lock +++ b/corp/rih/frontend/Cargo.lock @@ -1092,6 +1092,7 @@ dependencies = [ "serde_json", "serde_urlencoded", "static_markdown", + "uuid", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -1466,6 +1467,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] +name = "uuid" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" +dependencies = [ + "getrandom", + "serde", +] + +[[package]] name = "version_check" version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" |