Add initial commit

Copied from https://github.com/vsquad-gitea/pool-elo
This commit is contained in:
2023-12-10 02:28:49 -05:00
parent d74b45a681
commit 4a3f8f5004
28 changed files with 777 additions and 17 deletions

34
Cargo.toml Normal file
View File

@@ -0,0 +1,34 @@
[package]
resolver = "2"
name = "yugioh-inv"
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",
] }
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 = "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"] }
perseus-axum = { version = "0.4.2" }
axum = "0.6"
tower-http = { version = "0.3", features = ["fs"] }
[target.'cfg(client)'.dependencies]
wasm-bindgen = "0.2"
reqwest = { version = "0.11", features = ["json"] }