Add base data structures for pool matches
Some checks failed
Build Crate / build (push) Failing after 4m29s

This commit is contained in:
2023-09-22 03:45:48 -04:00
parent 0a68829d6c
commit 30f3aa63d5
16 changed files with 148 additions and 123 deletions

View File

@@ -5,25 +5,29 @@ version = "0.1.0"
edition = "2021"
[dependencies]
perseus = { version = "0.4.2", features = [ "hydrate" ] }
sycamore = {version = "0.8.2", features = ["suspense", "web", "wasm-bindgen-interning",]}
perseus = { version = "0.4.2", features = ["hydrate"] }
sycamore = { version = "0.8.2", features = [
"suspense",
"web",
"wasm-bindgen-interning",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
env_logger = "0.10.0"
log = "0.4.20"
once_cell = "1.18.0"
web-sys = "0.3.64"
cfg-if = { version = "1.0.0", features = [] }
cfg-if = "1.0.0"
chrono = { version = "0.4.31", features = ["serde"] }
[target.'cfg(engine)'.dev-dependencies]
fantoccini = "0.19"
[target.'cfg(engine)'.dependencies]
tokio = { version = "1", features = [ "macros", "rt", "rt-multi-thread" ] }
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
perseus-axum = { version = "0.4.2" }
axum = "0.6"
tower-http = { version = "0.3", features = [ "fs" ] }
tower-http = { version = "0.3", features = ["fs"] }
[target.'cfg(client)'.dependencies]
wasm-bindgen = "0.2"