You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-09-14 11:29:26 +03:00
89 lines
2.4 KiB
TOML
89 lines
2.4 KiB
TOML
[package]
|
|
name = "mas-cli"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
axum.workspace = true
|
|
bytes.workspace = true
|
|
camino.workspace = true
|
|
clap.workspace = true
|
|
console = "0.15.8"
|
|
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
|
|
dotenvy = "0.15.7"
|
|
figment.workspace = true
|
|
httpdate = "1.0.3"
|
|
http.workspace = true
|
|
http-body.workspace = true
|
|
http-body-util.workspace = true
|
|
hyper.workspace = true
|
|
ipnetwork = "0.20.0"
|
|
itertools = "0.13.0"
|
|
listenfd = "1.0.1"
|
|
rand.workspace = true
|
|
rand_chacha = "0.3.1"
|
|
rustls.workspace = true
|
|
serde_json.workspace = true
|
|
serde_yaml = "0.9.34"
|
|
sqlx.workspace = true
|
|
tokio.workspace = true
|
|
tower.workspace = true
|
|
tower-http.workspace = true
|
|
url.workspace = true
|
|
zeroize = "1.8.1"
|
|
|
|
tracing.workspace = true
|
|
tracing-appender = "0.2.3"
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
tracing-opentelemetry.workspace = true
|
|
opentelemetry.workspace = true
|
|
opentelemetry-http.workspace = true
|
|
opentelemetry-jaeger-propagator = "0.3.0"
|
|
opentelemetry-otlp = { version = "0.17.0", default-features = false, features = ["trace", "metrics", "http-proto"] }
|
|
opentelemetry-prometheus = "0.17.0"
|
|
opentelemetry-resource-detectors = "0.3.0"
|
|
opentelemetry-semantic-conventions.workspace = true
|
|
opentelemetry-stdout = { version = "0.5.0", features = ["trace", "metrics"] }
|
|
opentelemetry_sdk = { version = "0.24.1", features = ["trace", "metrics", "rt-tokio"] }
|
|
prometheus = "0.13.4"
|
|
sentry.workspace = true
|
|
sentry-tracing.workspace = true
|
|
sentry-tower.workspace = true
|
|
|
|
mas-config.workspace = true
|
|
mas-data-model.workspace = true
|
|
mas-email.workspace = true
|
|
mas-handlers = { workspace = true }
|
|
mas-http = { workspace = true, features = ["client"] }
|
|
mas-i18n.workspace = true
|
|
mas-iana.workspace = true
|
|
mas-keystore.workspace = true
|
|
mas-listener.workspace = true
|
|
mas-matrix.workspace = true
|
|
mas-matrix-synapse.workspace = true
|
|
mas-policy.workspace = true
|
|
mas-router.workspace = true
|
|
mas-spa.workspace = true
|
|
mas-storage.workspace = true
|
|
mas-storage-pg.workspace = true
|
|
mas-tasks.workspace = true
|
|
mas-templates.workspace = true
|
|
mas-tower.workspace = true
|
|
oauth2-types.workspace = true
|
|
|
|
[features]
|
|
# Features used for the prebuilt binaries
|
|
dist = ["mas-config/dist"]
|
|
|
|
# Features used in the Docker image
|
|
docker = ["mas-config/docker"]
|