mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-05-24 19:35:28 +00:00
54 lines
1.3 KiB
TOML
54 lines
1.3 KiB
TOML
# Copyright 2025 New Vector Ltd.
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
# Please see LICENSE files in the repository root for full details.
|
|
|
|
[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
|
|
publish.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
base64ct.workspace = true
|
|
chrono.workspace = true
|
|
elliptic-curve.workspace = true
|
|
form_urlencoded.workspace = true
|
|
headers.workspace = true
|
|
http.workspace = true
|
|
language-tags.workspace = true
|
|
mime.workspace = true
|
|
p256.workspace = true
|
|
rand.workspace = true
|
|
reqwest.workspace = true
|
|
serde_json.workspace = true
|
|
serde_urlencoded.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
tracing.workspace = true
|
|
url.workspace = true
|
|
|
|
mas-http.workspace = true
|
|
mas-iana.workspace = true
|
|
mas-jose.workspace = true
|
|
mas-keystore.workspace = true
|
|
oauth2-types.workspace = true
|
|
|
|
[dev-dependencies]
|
|
assert_matches.workspace = true
|
|
bitflags.workspace = true
|
|
http-body-util.workspace = true
|
|
rand_chacha.workspace = true
|
|
rustls.workspace = true
|
|
tokio.workspace = true
|
|
wiremock.workspace = true
|