mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-25 09:44:03 +01:00
67d64ec4b3
* 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
34 lines
855 B
TOML
34 lines
855 B
TOML
[package]
|
|
name = "atuin-common"
|
|
edition = "2021"
|
|
description = "common library for atuin"
|
|
|
|
rust-version = { workspace = true }
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
time = { workspace = true }
|
|
serde = { workspace = true }
|
|
uuid = { workspace = true }
|
|
rand = { workspace = true }
|
|
typed-builder = { workspace = true }
|
|
eyre = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
semver = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
directories = { workspace = true }
|
|
sysinfo = "0.30.7"
|
|
base64 = { workspace = true }
|
|
getrandom = "0.2"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = { workspace = true }
|