mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-06-04 12:31:37 +00:00
0ac4fddee4
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.18.1 to 1.18.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.18.1...tokio-1.18.2) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
28 lines
838 B
TOML
28 lines
838 B
TOML
[package]
|
|
name = "mas-storage"
|
|
version = "0.1.0"
|
|
authors = ["Quentin Gliech <quenting@element.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
tokio = "1.18.2"
|
|
sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] }
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
serde = { version = "1.0.137", features = ["derive"] }
|
|
serde_json = "1.0.81"
|
|
thiserror = "1.0.31"
|
|
anyhow = "1.0.57"
|
|
tracing = "0.1.34"
|
|
|
|
# Password hashing
|
|
argon2 = { version = "0.4.0", features = ["password-hash"] }
|
|
password-hash = { version = "0.4.1", features = ["std"] }
|
|
rand = "0.8.5"
|
|
url = { version = "2.2.2", features = ["serde"] }
|
|
|
|
oauth2-types = { path = "../oauth2-types" }
|
|
mas-data-model = { path = "../data-model" }
|
|
mas-iana = { path = "../iana" }
|
|
mas-jose = { path = "../jose" }
|