From 67d64ec4b368c48188c746f2dba2967ec4615fe5 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 24 Jun 2024 14:54:54 +0100 Subject: feat: add user account verification (#2190) * add verified column to users table * add database functions to check if verified, or to verify * getting there * verification check * use base64 urlsafe no pad * add verification client * clippy * correct docs * fix integration tests --- crates/atuin-common/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crates/atuin-common/Cargo.toml') diff --git a/crates/atuin-common/Cargo.toml b/crates/atuin-common/Cargo.toml index 5fdcbfa7..f89c1d06 100644 --- a/crates/atuin-common/Cargo.toml +++ b/crates/atuin-common/Cargo.toml @@ -24,6 +24,8 @@ semver = { workspace = true } thiserror = { workspace = true } directories = { workspace = true } sysinfo = "0.30.7" +base64 = { workspace = true } +getrandom = "0.2" lazy_static = "1.4.0" -- cgit v1.3.1