We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b1b84 commit f7b5aefCopy full SHA for f7b5aef
1 file changed
backend/db.rs
@@ -53,11 +53,13 @@ async fn sync_terms_version_to_db() -> sqlx::Result<()> {
53
let mut hasher = Sha256::new();
54
hasher.update(include_bytes!("../frontend/components/TermsOfService.md"));
55
let terms_hash = hasher.finalize();
56
+ #[expect(deprecated, reason = "Caused by upstream")]
57
let terms_hash = terms_hash.as_slice();
58
59
60
hasher.update(include_bytes!("../frontend/components/PrivacyNotice.md"));
61
let privacy_hash = hasher.finalize();
62
63
let privacy_hash = privacy_hash.as_slice();
64
65
transaction!(async |tx| -> TxResult<_> {
0 commit comments