user-lib/Cargo.toml

22 lines
693 B
TOML

[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"
futures-util = "0.3"
log = "0.4.19"
err = { path = "/Users/franklinblanco/Desktop/Code/rust/libs/dev-deps/err" }