first commit

This commit is contained in:
lennlouisgeek
2026-04-16 01:55:55 +08:00
commit ccfc77b734
18 changed files with 30087 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "eskin-data-analysis"
version = "0.1.0"
authors = ["lennlouisgeek <lennlouisgeek@gmail.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = { version = "0.7.1", features = ["router"] }
futures = "0.3.32"
polars = { version="0.53.0", features = ["lazy", "csv"] }
rfd = { version = "0.17.2" }
[features]
default = ["desktop"]
web = ["dioxus/web"]
desktop = ["dioxus/desktop"]
mobile = ["dioxus/mobile"]