19 lines
310 B
TOML
19 lines
310 B
TOML
[package]
|
|
name = "el-auth"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "el-ui built-in authentication and authorization — native to the framework"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "el_auth"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
thiserror = "1"
|
|
base64 = "0.22"
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
|
|
[dev-dependencies]
|