2022-10-04 11:06:48 +02:00
|
|
|
[package]
|
|
|
|
name = "como_api"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-27 13:12:29 +02:00
|
|
|
como_gql.workspace = true
|
|
|
|
como_core.workspace = true
|
|
|
|
como_domain.workspace = true
|
|
|
|
como_infrastructure.workspace = true
|
2023-08-20 00:23:27 +02:00
|
|
|
como_auth.workspace = true
|
2022-10-04 11:06:48 +02:00
|
|
|
|
2023-08-20 00:23:27 +02:00
|
|
|
async-trait.workspace = true
|
2023-05-27 13:12:29 +02:00
|
|
|
async-graphql.workspace = true
|
|
|
|
async-graphql-axum.workspace = true
|
|
|
|
axum.workspace = true
|
|
|
|
axum-extra.workspace = true
|
|
|
|
axum-sessions.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
uuid.workspace = true
|
|
|
|
sqlx.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
|
|
tracing.workspace = true
|
2023-05-28 15:34:36 +02:00
|
|
|
async-sqlx-session.workspace = true
|
2022-10-04 11:06:48 +02:00
|
|
|
|
2023-08-20 16:34:48 +02:00
|
|
|
zitadel = { version = "3.4.16", features = ["axum"] }
|
2023-05-27 13:12:29 +02:00
|
|
|
tower = "0.4.13"
|
2023-08-20 16:34:48 +02:00
|
|
|
tower-http = { version = "0.4.3", features = ["cors", "trace"] }
|
|
|
|
oauth2 = "4.4.1"
|
|
|
|
openidconnect = "3.3.0"
|