1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00
Files
authentication-service/crates/graphql/Cargo.toml
Quentin Gliech 7fcd022eea Make sure we validate passwords & emails by the policy at all stages
Also refactors the way we get the policy engines in requests
2023-08-30 19:39:39 +02:00

30 lines
793 B
TOML

[package]
name = "mas-graphql"
version = "0.1.0"
authors = ["Quentin Gliech <quenting@element.io>"]
edition = "2021"
license = "Apache-2.0"
[dependencies]
anyhow.workspace = true
async-graphql = { version = "6.0.4", features = ["chrono", "url"] }
async-trait = "0.1.73"
chrono.workspace = true
lettre = { version = "0.10.4", default-features = false }
serde.workspace = true
thiserror.workspace = true
tokio = { version = "1.32.0", features = ["sync"] }
tracing.workspace = true
tower = { version = "0.4.13", features = ["util"] }
ulid = "1.0.0"
url.workspace = true
oauth2-types = { path = "../oauth2-types" }
mas-data-model = { path = "../data-model" }
mas-matrix = { path = "../matrix" }
mas-policy = { path = "../policy" }
mas-storage = { path = "../storage" }
[[bin]]
name = "schema"