KeiSeiKit-1.0/_primitives/_rust/kei-auth-magiclink/Cargo.toml
Parfii-bot 0be354a920 KeiSeiKit-public — clean state
Single-commit clean baseline after security scrub of niche-tells,
project codenames, internal jargon, and contributor-email leaks.

Contents:
- 100 Rust crates (_primitives/_rust/)
- 37 agent manifests (_manifests/) + generated specs (_generated/)
- 67 user-invocable skills (skills/)
- 33 hooks (hooks/)
- Composition blocks (_blocks/)
- Documentation (docs/, README.md)
- TS adapter packages (_ts_packages/)
- Assembler (_assembler/)
- Roles (_roles/)
- Templates (_templates/)
- Forgejo CI (.forgejo/)

Author: Denis Parfionovich <info@greendragon.info>

License: see LICENSE.
2026-05-01 12:09:03 +08:00

33 lines
1,002 B
TOML

[package]
name = "kei-auth-magiclink"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
description = "AuthProvider impl for passwordless email magic-link tokens (HMAC-SHA256, stateless). Wave 7 atomar; sibling of kei-auth (multi-tenant tokens) and kei-auth-{google,github,microsoft,apple}."
authors = ["Denis Parfionovich <info@greendragon.info>"]
license = "Apache-2.0"
[lib]
name = "kei_auth_magiclink"
path = "src/lib.rs"
[dependencies]
async-trait = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
sha2 = { workspace = true }
hmac = "0.12"
base64 = "0.22"
subtle = "2"
kei-runtime-core = { path = "../kei-runtime-core" }
[dev-dependencies]
tokio = { workspace = true }
[package.metadata.keisei]
backend = "magiclink"
trait = "AuthProvider"
description = "Email magic-link AuthProvider (HMAC-SHA256 stateless tokens, passwordless)"
authors = ["Denis Parfionovich <info@greendragon.info>"]