-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from sebadob/prepare-client-release-v0_1
Release `rauthy-client` v0.1.0
- Loading branch information
Showing
2 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rauthy-client" | ||
version = "0.1.0-20231127" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Sebastian Dobe <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
# rauthy-client | ||
|
||
Minimal and safe by default client library for the Rauthy project. | ||
Minimal and safe by default client library for the [Rauthy](https://github.com/sebadob/rauthy) project. | ||
|
||
This has not been released and should only be used for testing until the first release. | ||
You can of course use any generic OIDC client with [Rauthy](https://github.com/sebadob/rauthy). | ||
However, the idea of this crate is to provide the simplest possible production ready setup, with the least amount of | ||
overhead and secure default values, if you only use [Rauthy](https://github.com/sebadob/rauthy) anyway. | ||
|
||
It is working with the `axum` framework for now and a first example for axum exists. | ||
However, at least `actix` will be added as a feature before the first release and the | ||
API might change with the introduction with this feature as the next step. | ||
This client should work without any issues with other OIDC providers as well, as long as they support the S256 PKCE | ||
flow. However, this was only tested against [Rauthy](https://github.com/sebadob/rauthy). | ||
|
||
You can find examples for `actix-web`, `axum` or a fully generic framework / application in the | ||
[Examples](https://github.com/sebadob/rauthy/tree/main/rauthy-client/examples) directory. |