mirror of https://github.com/Leinnan/rpack.git
Update deps
This commit is contained in:
parent
a14d5c3c22
commit
588fab72ef
File diff suppressed because it is too large
Load Diff
13
Cargo.toml
13
Cargo.toml
|
|
@ -3,14 +3,13 @@ name = "rpack"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Piotr Siuszko <siuszko@zoho.com>"]
|
authors = ["Piotr Siuszko <siuszko@zoho.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.72"
|
|
||||||
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"
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
egui = "0.24.1"
|
egui = "0.26.2"
|
||||||
eframe = { version = "0.24.1", default-features = false, features = [
|
eframe = { version = "0.26.2", default-features = false, features = [
|
||||||
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
|
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies.
|
||||||
"default_fonts", # Embed the default egui fonts.
|
"default_fonts", # Embed the default egui fonts.
|
||||||
"glow", # Use the glow rendering backend. Alternative: "wgpu".
|
"glow", # Use the glow rendering backend. Alternative: "wgpu".
|
||||||
|
|
@ -18,15 +17,15 @@ eframe = { version = "0.24.1", default-features = false, features = [
|
||||||
] }
|
] }
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
egui_json_tree = "0.2"
|
egui_json_tree = "0.4"
|
||||||
|
|
||||||
# You only need serde if you want app persistence:
|
# You only need serde if you want app persistence:
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
texture_packer = {version="0.25.0", features = ["common"]}
|
texture_packer = {version="0.27.0", features = ["common"]}
|
||||||
image = { version = "0.24", features = ["jpeg", "png"] }
|
image = { version = "0.24", features = ["jpeg", "png"] }
|
||||||
egui_extras = { version = "*", features = ["all_loaders"] }
|
egui_extras = { version = "*", features = ["all_loaders"] }
|
||||||
rfd = {version="0.12", features = []}
|
rfd = {version="0.14", features = []}
|
||||||
wasm-bindgen-futures = "0.4.39"
|
wasm-bindgen-futures = "0.4.42"
|
||||||
|
|
||||||
# native:
|
# native:
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue