Compare commits

..

2 Commits

Author SHA1 Message Date
CleverWild
da1c5f02bc fix(db): require share_salt to be supplied by the daemon 2026-08-25 20:36:19 +02:00
CleverWild
0826bed85f chore(lints): fix regression caused by rust 1.98.0 2026-08-25 20:35:45 +02:00
2 changed files with 2 additions and 1 deletions

View File

@@ -167,3 +167,4 @@ nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 } pedantic = { level = "warn", priority = -1 }
type_repetition_in_bounds = "allow" # sometimes, it's better for readability this way type_repetition_in_bounds = "allow" # sometimes, it's better for readability this way
unused_async_trait_impl = "allow"

View File

@@ -56,7 +56,7 @@ create table if not exists operator (
share blob not null, share blob not null,
share_nonce blob not null, share_nonce blob not null,
share_salt blob not null default (randomblob(32)), share_salt blob not null,
created_at integer not null default(unixepoch ('now')), created_at integer not null default(unixepoch ('now')),
updated_at integer not null default(unixepoch ('now')) updated_at integer not null default(unixepoch ('now'))