Allow CORS and fix event readiness notification

This commit is contained in:
oxalica 2024-08-26 22:55:08 -04:00
parent 593da123b6
commit bcfac0c6b6
3 changed files with 38 additions and 1 deletions

View file

@ -10,6 +10,7 @@ axum = { version = "0.7.5", features = ["tokio"] }
bitflags = { version = "2.6.0", features = ["serde"] }
clap = { version = "4.5.16", features = ["derive"] }
ed25519-dalek = { version = "2.1.1", features = ["digest", "serde"] }
futures-util = "0.3.30"
hex = { version = "0.4.3", features = ["serde"] }
humantime = "2.1.0"
rand_core = "0.6.4"
@ -21,6 +22,7 @@ serde-constant = "0.1.0"
serde_json = "1.0.127"
tokio = { version = "1.39.3", features = ["macros", "rt-multi-thread", "sync"] }
tokio-stream = { version = "0.1.15", features = ["sync"] }
tower-http = { version = "0.5.2", features = ["cors"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
uuid = { version = "1.10.0", features = ["serde", "v4"] }