Skip to content

Commit 3d7f784

Browse files
committed
update v0.1.1
1 parent 62e2540 commit 3d7f784

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
]
1010

1111
[workspace.package]
12-
version = "0.1.0" # JAVA_ASM_VERSION
12+
version = "0.1.1" # JAVA_ASM_VERSION
1313
authors = ["zsqw123"]
1414
edition = "2021"
1515
license = "Apache-2.0"
@@ -20,9 +20,9 @@ homepage = "https://crates.io/crates/java_asm"
2020
readme = "README.md"
2121

2222
[workspace.dependencies]
23-
java_asm_macro = { path = "asm_macro", version = "0.1.0" } # JAVA_ASM_VERSION
24-
java_asm = { path = "asm", version = "0.1.0" } # JAVA_ASM_VERSION
25-
java_asm_server = { path = "asm_server", version = "0.1.0" } # JAVA_ASM_VERSION
23+
java_asm_macro = { path = "asm_macro", version = "0.1.1" } # JAVA_ASM_VERSION
24+
java_asm = { path = "asm", version = "0.1.1" } # JAVA_ASM_VERSION
25+
java_asm_server = { path = "asm_server", version = "0.1.1" } # JAVA_ASM_VERSION
2626

2727
image = "0.25.6"
2828
trie-rs = "0.4.2"

asm_egui/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn main() -> eframe::Result {
1919
let image = image.decode().unwrap();
2020
let width = image.width();
2121
let height = image.height();
22-
let decoded = image.as_rgba8().unwrap().to_vec();
22+
let decoded = image.to_rgba8().to_vec();
2323
let icon_data = IconData {
2424
rgba: decoded,
2525
width,

0 commit comments

Comments
 (0)