Update toolchain and dependencies

This commit is contained in:
Piotr Siuszko 2025-10-04 22:12:42 +02:00
parent e55ac29b0e
commit 8c8f2c0fe1
2 changed files with 3 additions and 13 deletions

View File

@ -3,12 +3,13 @@ name = "rpack_egui"
version = "0.3.0" version = "0.3.0"
description = "GUI application for generating rpack atlases" description = "GUI application for generating rpack atlases"
authors = ["Piotr Siuszko <siuszko@zoho.com>"] authors = ["Piotr Siuszko <siuszko@zoho.com>"]
edition = "2021" edition = "2024"
repository = "https://github.com/Leinnan/rpack.git" repository = "https://github.com/Leinnan/rpack.git"
homepage = "https://github.com/Leinnan/rpack" homepage = "https://github.com/Leinnan/rpack"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
[features] [features]
default = []
profiler = ["dep:puffin", "dep:puffin_http", "dep:profiling"] profiler = ["dep:puffin", "dep:puffin_http", "dep:profiling"]
[dependencies] [dependencies]
@ -29,14 +30,13 @@ texture_packer = { workspace = true }
image = { workspace = true } image = { workspace = true }
egui_extras = { version = "0.32", features = ["all_loaders"] } egui_extras = { version = "0.32", features = ["all_loaders"] }
rfd = { version = "0.15", features = [] } rfd = { version = "0.15", features = [] }
wasm-bindgen-futures = "0.4"
anyhow = "1" anyhow = "1"
crossbeam = "0.8" crossbeam = "0.8"
once_cell = "1" once_cell = "1"
futures = "0.3.12"
# native: # native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
futures = "0.3.12"
puffin = {version = "0.19", optional = true} puffin = {version = "0.19", optional = true}
puffin_http = {version = "0.16", optional = true} puffin_http = {version = "0.16", optional = true}
profiling = {version = "1.0.16", optional = true, default-features = false , features = ["profile-with-puffin"] } profiling = {version = "1.0.16", optional = true, default-features = false , features = ["profile-with-puffin"] }

View File

@ -1,10 +0,0 @@
# If you see this, run "rustup self update" to get rustup 1.23 or newer.
# NOTE: above comment is for older `rustup` (before TOML support was added),
# which will treat the first line as the toolchain name, and therefore show it
# to the user in the error, instead of "error: invalid channel name '[toolchain]'".
[toolchain]
channel = "1.85" # Avoid specifying a patch version here; see https://github.com/emilk/eframe_template/issues/145
components = [ "rustfmt", "clippy" ]
targets = [ "wasm32-unknown-unknown" ]