ones-oidc 0.3.2

ONES OpenID Connect client for Rust
Documentation
# Development

## Guix

```bash
guix shell -m manifest.scm
CC=gcc cargo build
```

## Docker

Clippy:

```bash
docker run --rm -v $(pwd):/app -w /app rust:1.82 sh \
-c "rustup component add clippy && cargo clippy \
--all-targets --all-features -- -D warnings"
```

Format:

```bash
docker run --rm -v $(pwd):/app -w /app rust:1.82 sh \
-c "rustup component add rustfmt && cargo fmt --all" 
```