Skip to content

Commit

Permalink
release 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed Nov 28, 2022
1 parent 7739325 commit b9aa277
Showing 1 changed file with 28 additions and 34 deletions.
62 changes: 28 additions & 34 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,55 +1,49 @@
[package]
name = 'openid'
version = '0.10.0'
authors = ['Alexander Korolev <alexander.korolev.germany@gmail.com>']
edition = '2021'
categories = []
description = '''
name = "openid"
version = "0.10.1"
authors = ["Alexander Korolev <alexander.korolev.germany@gmail.com>"]
edition = "2021"
categories = ["authentication"]
description = """
OpenID Connect & Discovery client library using async / await.
'''
homepage = 'https://github.com/kilork/openid'
keywords = [
'authentication',
'authorization',
'oauth',
'openid',
'uma2'
]
license = 'Unlicense OR MIT'
readme = 'README.md'
repository = 'https://github.com/kilork/openid'
"""
homepage = "https://github.com/kilork/openid"
keywords = ["authentication", "authorization", "oauth", "openid", "uma2"]
license = "Unlicense OR MIT"
readme = "README.md"
repository = "https://github.com/kilork/openid"

[features]
default = ['native-tls']
default = ["native-tls"]
microsoft = []
uma2 = []
native-tls = ['reqwest/native-tls']
rustls = ['reqwest/rustls-tls']
native-tls = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]

[dependencies]
lazy_static = '1.4'
serde_json = { version = '1', default-features = false }
base64 = '0.13'
biscuit = '0.5'
lazy_static = "1.4"
serde_json = { version = "1", default-features = false }
base64 = "0.13"
biscuit = "0.5"
thiserror = "1"
validator = { version = '0.15', features = ["derive"] }
validator = { version = "0.15", features = ["derive"] }

[dependencies.url]
version = '2'
version = "2"
default-features = false
features = ['serde']
features = ["serde"]

[dependencies.chrono]
version = '0.4'
version = "0.4"
default-features = false
features = ['serde']
features = ["serde"]

[dependencies.serde]
version = '1'
version = "1"
default-features = false
features = ['derive']
features = ["derive"]

[dependencies.reqwest]
version = '0.11'
version = "0.11"
default-features = false
features = ['json']
features = ["json"]

0 comments on commit b9aa277

Please sign in to comment.