1
0
Fork
You've already forked tarcza
0
No description
  • HTML 87.6%
  • Rust 12.4%
2025年11月03日 00:27:35 +01:00
examples/axum_tokio even more docs 2025年09月17日 22:10:25 +02:00
src lil more clarification 2025年11月03日 00:27:35 +01:00
.gitignore init 2025年08月21日 23:57:40 +02:00
Cargo.lock removed chrono 2025年09月17日 22:40:24 +02:00
Cargo.toml removed chrono 2025年09月17日 22:40:24 +02:00
README.md init 2025年08月21日 23:57:40 +02:00
tarpaulin-report.html more docs, reexported SecretString, other stuff 2025年08月25日 16:10:53 +02:00

Tarcza

This is my WIP stack-agnostic framework for basic authentication. It's still being built, long way before it's gonna be useable.

What's planned

  • Simple way to include basic login + password authentication
  • Agnostic design: this framework should work no matter what you use as your database or web framework, it's meant to be agnostic in this regard.
  • Semi-opinionated: I want to keep the design as simple as possible while maintaining good security, but still give user control over auth parameters.
  • Building block: It's not meant to be a fully features authentication service, more like a building block to simplify implementing authentication in your software.

Planned out of box features

  • Basic user+password login pipeline
  • JWT authentication
  • Password hashing
  • Trait allowing integration with any DB you want