diff options
| author | 2026-02-28 09:03:19 +0800 | |
|---|---|---|
| committer | 2026-02-28 09:03:19 +0800 | |
| commit | cc53b1cf260e1c67939e50608ef18764da616d55 (patch) | |
| tree | 119109c62331d4d26612e2df7726cee82d1871f5 /src-tauri/Cargo.toml | |
| parent | ee37d044e473217daadd9ce26c7e2e2ad39a0490 (diff) | |
| parent | 81a62402ef6f8900ff092366121a9b7a4263ba52 (diff) | |
| download | DropOut-cc53b1cf260e1c67939e50608ef18764da616d55.tar.gz DropOut-cc53b1cf260e1c67939e50608ef18764da616d55.zip | |
Merge remote-tracking branch 'upstream/main'
Diffstat (limited to 'src-tauri/Cargo.toml')
| -rw-r--r-- | src-tauri/Cargo.toml | 67 |
1 files changed, 40 insertions, 27 deletions
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6fde40f..1cce2cc 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,45 +1,58 @@ [package] name = "dropout" -version = "0.2.0-alpha.1" -edition = "2021" +version = "0.2.0-alpha.4" +edition = "2024" authors = ["HsiangNianian"] description = "The DropOut Minecraft Game Launcher" -license = "MIT" repository = "https://github.com/HydroRoll-Team/DropOut" -publish = false +license = "MIT" + +[package.metadata.deb] +depends = "libgtk-3-0" +section = "games" +assets = [ + ["target/release/dropout", "usr/bin/", "755"], +] [dependencies] -serde = { version = "1.0", features = ["derive"] } -toml = "0.5" -log = "0.4" +bytes = "1.11.0" +chrono = "0.4" +dirs = "5.0" +dropout-macros = { path = "../crates/macros", version = "0.1.0-alpha.0" } env_logger = "0.9" -tokio = { version = "1.49.0", features = ["full"] } -reqwest = { version = "0.11", features = ["json", "blocking", "stream", "multipart"] } -serde_json = "1.0.149" -tauri = { version = "2.9", features = [] } -tauri-plugin-shell = "2.3" -uuid = { version = "1.10.0", features = ["v3", "v4", "serde"] } +flate2 = "1.0" futures = "0.3" +hex = "0.4" +log = "0.4" +regex = "1.12.2" +reqwest = { version = "0.11", features = [ + "blocking", + "json", + "multipart", + "stream" +] } +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0.149" +serde_urlencoded = "0.7.1" sha1 = "0.10" sha2 = "0.10" -hex = "0.4" -zip = "2.2.2" -flate2 = "1.0" tar = "0.4" -dirs = "5.0" -serde_urlencoded = "0.7.1" +tauri = { version = "2.9", features = [] } tauri-plugin-dialog = "2.6.0" tauri-plugin-fs = "2.4.5" -bytes = "1.11.0" -chrono = "0.4" -regex = "1.12.2" +tauri-plugin-shell = "2.3" +tokio = { version = "1.49.0", features = ["full"] } +toml = "0.5" +ts-rs = { version = "11.1.0", features = ["serde-compat"] } +uuid = { version = "1.10.0", features = ["serde", "v3", "v4"] } +zip = "2.2.2" + +[dev-dependencies] +ctor = "0.6.3" +inventory = "0.3.21" [build-dependencies] tauri-build = { version = "2.0", features = [] } -[package.metadata.deb] -depends = "libgtk-3-0" -section = "games" -assets = [ - ["target/release/dropout", "usr/bin/", "755"], -] +[target.'cfg(all(windows, target_env = "gnu"))'.build-dependencies] +embed-resource = "2.4" |