You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-29 22:01:14 +03:00
Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.97 to 1.0.99. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.97...v1.0.99) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "mas-jose"
|
|
version = "0.1.0"
|
|
authors = ["Quentin Gliech <quenting@element.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
base64ct = { version = "1.6.0", features = ["std"] }
|
|
chrono = { version = "0.4.26", features = ["serde"] }
|
|
digest = "0.10.7"
|
|
ecdsa = { version = "0.16.7", features = ["signing", "verifying"] }
|
|
elliptic-curve = "0.13.5"
|
|
generic-array = "0.14.7"
|
|
hmac = "0.12.1"
|
|
k256 = { version = "0.13.1", features = ["ecdsa"] }
|
|
p256 = { version = "0.13.2", features = ["ecdsa"] }
|
|
p384 = { version = "0.13.0", features = ["ecdsa"] }
|
|
rand = "0.8.5"
|
|
rsa = "0.9.2"
|
|
schemars = "0.8.12"
|
|
sec1 = "0.7.2"
|
|
serde = { version = "1.0.164", features = ["derive"] }
|
|
serde_json = "1.0.99"
|
|
serde_with = { version = "3.0.0", features = ["base64"] }
|
|
sha2 = { version = "0.10.7", features = ["oid"] }
|
|
signature = "2.1.0"
|
|
thiserror = "1.0.40"
|
|
tracing = "0.1.37"
|
|
url = { version = "2.4.0", features = ["serde"] }
|
|
|
|
mas-iana = { path = "../iana" }
|
|
|
|
[dev-dependencies]
|
|
insta = { version = "1.30.0" }
|
|
rand_chacha = "0.3.1"
|