-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
resolver = "2"
members = [
"asm", "asm_macro", "asm_server",
"asm_egui",
# iced seems quite not mature to use and font fallback didn't works well.
# "asm_iced",
]
[workspace.package]
version = "0.0.10" # JAVA_ASM_VERSION
authors = ["zsqw123"]
edition = "2021"
license = "Apache-2.0"
description = "Java bytecode reader & writer in rust"
documentation = "https://github.com/zsqw123/rust-java-asm"
repository = "https://github.com/zsqw123/rust-java-asm"
homepage = "https://crates.io/crates/java_asm"
readme = "README.md"
[workspace.dependencies]
java_asm_macro = { path = "asm_macro", version = "0.0.10" } # JAVA_ASM_VERSION
java_asm = { path = "asm", version = "0.0.10" } # JAVA_ASM_VERSION
java_asm_server = { path = "asm_server", version = "0.0.10" } # JAVA_ASM_VERSION
enum_dispatch = "0.3.13"
zip = "2.2.0"
egui = { version = "0.29.1", features = ["persistence"] }
eframe = { version = "0.29.1", features = ["persistence"] }
egui_extras = "0.29.1"
egui_flex = "0.1.1"
#iced = "0.13.1"
#cosmic-text = "0.12.1"
fontdb = "0.23.0"
rfd = "0.15.0"
log = { version = "0.4", features = ["std"] }