Files
matrix-authentication-service/crates/jose/Cargo.toml
T
dependabot[bot] efaf407f9d build(deps): bump insta from 1.36.1 to 1.38.0
Bumps [insta](https://github.com/mitsuhiko/insta) from 1.36.1 to 1.38.0.
- [Release notes](https://github.com/mitsuhiko/insta/releases)
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mitsuhiko/insta/compare/1.36.1...1.38.0)

---
updated-dependencies:
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-04-30 19:13:29 +02:00

43 lines
1.0 KiB
TOML

[package]
name = "mas-jose"
description = "JSON Object Signing and Encryption (JWT & co) utilities"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[lints]
workspace = true
[dependencies]
base64ct = { version = "1.6.0", features = ["std"] }
chrono.workspace = true
digest = "0.10.7"
ecdsa = { version = "0.16.9", features = ["signing", "verifying"] }
elliptic-curve = "0.13.8"
generic-array = "0.14.7"
hmac = "0.12.1"
k256 = { version = "0.13.3", features = ["ecdsa"] }
p256 = { version = "0.13.2", features = ["ecdsa"] }
p384 = { version = "0.13.0", features = ["ecdsa"] }
rand.workspace = true
rsa = "0.9.6"
schemars.workspace = true
sec1 = "0.7.3"
serde.workspace = true
serde_json.workspace = true
serde_with = "3.8.1"
sha2 = { version = "0.10.8", features = ["oid"] }
signature = "2.2.0"
thiserror.workspace = true
tracing.workspace = true
url.workspace = true
mas-iana.workspace = true
[dev-dependencies]
insta = { version = "1.38.0" }
rand_chacha = "0.3.1"