07-17-remove_ticker (#2)
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: https://git.front.kjuulh.io/kjuulh/scel/pulls/2
This commit is contained in:
2022-07-18 13:17:02 +02:00
parent 4043f4ec81
commit 05745f51ad
23 changed files with 1431 additions and 94 deletions

View File

@@ -8,8 +8,12 @@ edition = "2021"
[dependencies]
axum = { version = "0.5.6" }
futures = "0.3.21"
tower-http = {version = "0.3.3", features = ["cors"]}
async-graphql = { version = "4.0.0" }
tower-http = { version = "0.3.3", features = ["cors", "trace"] }
async-graphql = { version = "4.0.0", features = [
'tracing',
'opentelemetry',
"log",
] }
async-graphql-axum = { version = "4.0.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.68"
@@ -17,3 +21,11 @@ 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"}