Pull in code from pool_elo

need to re-integrate yugioh code
This commit is contained in:
2024-09-03 01:52:20 -04:00
parent 921f2de61a
commit 4674289473
54 changed files with 1775 additions and 164 deletions

View File

@@ -13,12 +13,13 @@ sycamore = { version = "0.8.2", features = [
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
env_logger = "0.11.3"
env_logger = "0.10.0"
log = "0.4.20"
once_cell = "1.18.0"
web-sys = "0.3.64"
web-sys = { version = "0.3.64", features = ["Window", "Storage"] }
cfg-if = "1.0.0"
chrono = { version = "0.4.38", features = ["serde"] }
chrono = { version = "0.4.38", features = ["serde", "wasm-bindgen"] }
lazy_static = "1.5"
strum = "0.26.2"
strum_macros = "0.26.2"
polars = { version = "0.39.2", default-features = false, features = [
@@ -41,8 +42,21 @@ fantoccini = "0.19"
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
perseus-axum = { version = "0.4.2" }
axum = "0.6"
futures = "0.3.28"
sea-orm = { version = "1.0", features = [
"sqlx-postgres",
"runtime-tokio-native-tls",
"macros",
"with-chrono",
] }
jsonwebtoken = "9.3.0"
argon2 = "0.5"
tower-http = { version = "0.3", features = ["fs"] }
[target.'cfg(client)'.dependencies]
wasm-bindgen = "0.2"
wasm-bindgen = "0.2.93"
reqwest = { version = "0.11", features = ["json"] }
sea-orm = { version = "1.0" }
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(engine)', 'cfg(client)'] }