scel/crates/scel_api/Cargo.toml

34 lines
920 B
TOML
Raw Normal View History

2022-07-16 14:05:12 +02:00
[package]
name = "scel_api"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-10-27 22:12:46 +02:00
axum = { version = "0.5.17" }
axum-extra = { version = "0.3.7", features = ["spa"] }
2023-03-30 19:40:15 +02:00
futures = "0.3.28"
2022-10-27 22:12:46 +02:00
tower-http = { version = "0.3.4", features = ["cors", "trace"] }
async-graphql = { version = "4.0.16", features = [
'tracing',
'opentelemetry',
"log",
] }
2022-10-27 22:12:46 +02:00
async-graphql-axum = { version = "4.0.16" }
2022-07-16 14:05:12 +02:00
serde = { version = "1.0", features = ["derive"] }
2022-11-22 15:40:07 +01:00
serde_json = "1.0.89"
2022-11-18 22:47:30 +01:00
tokio = { version = "1.22", features = ["full"] }
2022-07-16 14:05:12 +02:00
tracing = "0.1"
tracing-subscriber = { version = "0.3" }
2022-10-27 22:12:46 +02:00
anyhow = { version = "1.0.66" }
oauth2 = { version = "*" }
async-session = { version = "*" }
reqwest = { version = "*", default-features = false, features = [
"rustls-tls",
"json",
] }
2022-07-18 22:57:33 +02:00
hyper = { version = "*" }
2022-07-18 22:57:33 +02:00
scel_core = { path = "../scel_core" }