You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-09-17 09:42:14 +03:00
Bumps [serde_with](https://github.com/jonasbb/serde_with) from 3.8.3 to 3.9.0. - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.8.3...v3.9.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
[package]
|
|
name = "mas-oidc-client"
|
|
description = "OpenID Connect client library used by the Matrix Authentication Service"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = ["keystore"]
|
|
keystore = ["dep:mas-keystore"]
|
|
|
|
[dependencies]
|
|
base64ct = { version = "1.6.0", features = ["std"] }
|
|
bytes.workspace = true
|
|
chrono.workspace = true
|
|
form_urlencoded = "1.2.1"
|
|
futures-util = "0.3.30"
|
|
headers.workspace = true
|
|
http.workspace = true
|
|
language-tags = "0.3.2"
|
|
mime = "0.3.17"
|
|
rand.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
serde_urlencoded = "0.7.1"
|
|
serde_with = "3.9.0"
|
|
thiserror.workspace = true
|
|
tower.workspace = true
|
|
tracing.workspace = true
|
|
url.workspace = true
|
|
|
|
mas-http.workspace = true
|
|
mas-iana.workspace = true
|
|
mas-jose.workspace = true
|
|
mas-keystore = { workspace = true, optional = true }
|
|
oauth2-types.workspace = true
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.5.0"
|
|
bitflags = "2.6.0"
|
|
mas-keystore.workspace = true
|
|
rand_chacha = "0.3.1"
|
|
tokio.workspace = true
|
|
wiremock = "0.6.1"
|
|
http-body-util.workspace = true
|
|
rustls.workspace = true
|
|
|
|
mas-http = { workspace = true, features = ["client"] }
|