scel/src/lib/scel_api/Cargo.toml

32 lines
833 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-07-16 15:09:52 +02:00
axum = { version = "0.5.6" }
futures = "0.3.21"
tower-http = { version = "0.3.3", features = ["cors", "trace"] }
async-graphql = { version = "4.0.0", features = [
'tracing',
'opentelemetry',
"log",
] }
2022-07-16 15:09:52 +02:00
async-graphql-axum = { version = "4.0.0" }
2022-07-16 14:05:12 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3" }
anyhow = { version = "1.0.58" }
oauth2 = { version = "*" }
async-session = { version = "*" }
reqwest = { version = "*", default-features = false, features = [
"rustls-tls",
"json",
] }
scel_core = {path = "../scel_core"}