Skip to content

Commit

Permalink
release 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed Nov 28, 2022
1 parent 9e1c298 commit a60b2bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openid"
version = "0.10.1"
version = "0.11.0"
authors = ["Alexander Korolev <alexander.korolev.germany@gmail.com>"]
edition = "2021"
categories = ["authentication"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ Add dependency to Cargo.toml:

```toml
[dependencies]
openid = "0.10"
openid = "0.11"
```

By default it uses native tls, if you want to use `rustls`:

```toml
[dependencies]
openid = { version = "0.10", default-features = false, features = ["rustls"] }
openid = { version = "0.11", default-features = false, features = ["rustls"] }
```

### Use case: [Warp](https://crates.io/crates/warp) web server with [JHipster](https://www.jhipster.tech/) generated frontend and [Google OpenID Connect](https://developers.google.com/identity/protocols/OpenIDConnect)
Expand All @@ -49,7 +49,7 @@ edition = '2018'
anyhow = "1.0"
cookie = "0.14"
log = "0.4"
openid = "0.10"
openid = "0.11"
pretty_env_logger = "0.4"
reqwest = "0.11"
serde = { version = "1", features = [ "derive" ] }
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ Add dependency to Cargo.toml:
```toml
[dependencies]
openid = "0.10"
openid = "0.11"
```
By default it uses native tls, if you want to use `rustls`:
```toml
[dependencies]
openid = { version = "0.10", default-features = false, features = ["rustls"] }
openid = { version = "0.11", default-features = false, features = ["rustls"] }
```
### Use case: [Warp](https://crates.io/crates/warp) web server with [JHipster](https://www.jhipster.tech/) generated frontend and [Google OpenID Connect](https://developers.google.com/identity/protocols/OpenIDConnect)
Expand All @@ -50,7 +50,7 @@ edition = '2018'
anyhow = "1.0"
cookie = "0.14"
log = "0.4"
openid = "0.10"
openid = "0.11"
pretty_env_logger = "0.4"
reqwest = "0.11"
serde = { version = "1", features = [ "derive" ] }
Expand Down

0 comments on commit a60b2bc

Please sign in to comment.