Skip to content

Commit

Permalink
version 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed May 15, 2022
1 parent b525635 commit f6e08da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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.9.4'
version = '0.10.0'
authors = ['Alexander Korolev <[email protected]>']
edition = '2021'
categories = []
Expand Down
8 changes: 4 additions & 4 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.9"
openid = "0.10"
```

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

```toml
[dependencies]
openid = { version = "0.9", default-features = false, features = ["rustls"] }
openid = { version = "0.10", 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.9"
openid = "0.10"
pretty_env_logger = "0.4"
reqwest = "0.11"
serde = { version = "1", features = [ "derive" ] }
Expand Down Expand Up @@ -319,4 +319,4 @@ pub fn host(path: &str) -> String {
}
```

See full example: [openid-examples: warp](https://github.com/kilork/openid-examples/blob/v0.9/examples/warp.rs)
See full example: [openid-examples: warp](https://github.com/kilork/openid-examples/blob/v0.10/examples/warp.rs)
8 changes: 4 additions & 4 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.9"
openid = "0.10"
```
By default it uses native tls, if you want to use `rustls`:
```toml
[dependencies]
openid = { version = "0.9", default-features = false, features = ["rustls"] }
openid = { version = "0.10", 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.9"
openid = "0.10"
pretty_env_logger = "0.4"
reqwest = "0.11"
serde = { version = "1", features = [ "derive" ] }
Expand Down Expand Up @@ -320,7 +320,7 @@ pub fn host(path: &str) -> String {
}
```
See full example: [openid-examples: warp](https://github.com/kilork/openid-examples/blob/v0.9/examples/warp.rs)
See full example: [openid-examples: warp](https://github.com/kilork/openid-examples/blob/v0.10/examples/warp.rs)
*/
/*
Expand Down

0 comments on commit f6e08da

Please sign in to comment.