2023-09-20 20:23:29 +00:00
|
|
|
[package]
|
|
|
|
name = "user-lib"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Franklin E. Blanco"]
|
|
|
|
description = "A library to add secure user authentication to any service."
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/franklinblanco/user-lib.git"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls", "postgres", "chrono" ] }
|
|
|
|
chrono = { version = "0.4", features = [ "serde" ] }
|
|
|
|
ring = "0.16.20"
|
|
|
|
data-encoding = "2.3.2"
|
2023-09-21 03:31:16 +00:00
|
|
|
futures-util = "0.3"
|
2023-09-24 16:42:11 +00:00
|
|
|
log = "0.4.19"
|
|
|
|
thiserror = "1.0.48"
|
|
|
|
anyhow = { version = "1.0" }
|