66 lines
1.5 KiB
TOML
66 lines
1.5 KiB
TOML
[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 = { version = "0.3.64", features = ["Window", "Storage"] }
|
|
cfg-if = "1.0.0"
|
|
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 = [
|
|
"fmt_no_tty",
|
|
"rows",
|
|
"lazy",
|
|
"concat_str",
|
|
"strings",
|
|
"regex",
|
|
"csv",
|
|
"json",
|
|
"dtype-struct",
|
|
"serde",
|
|
] }
|
|
|
|
[target.'cfg(engine)'.dev-dependencies]
|
|
fantoccini = "0.19"
|
|
|
|
[target.'cfg(engine)'.dependencies]
|
|
axum = { version = "0.6", features = ["macros"] }
|
|
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
|
|
perseus-axum = { version = "0.4.2" }
|
|
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.93"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
sea-orm = { version = "1.0" }
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(engine)', 'cfg(client)'] }
|
|
|
|
[profile.release]
|
|
lto = true
|