-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (56 loc) · 1.97 KB
/
Cargo.toml
File metadata and controls
68 lines (56 loc) · 1.97 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# 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",
# "ta/src-tauri"
]
[workspace.package]
version = "0.1.4" # JAVA_ASM_VERSION
authors = ["zsqw123"]
edition = "2024"
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.1.4" } # JAVA_ASM_VERSION
java_asm = { path = "asm", version = "0.1.4" } # JAVA_ASM_VERSION
java_asm_server = { path = "asm_server", version = "0.1.4" } # JAVA_ASM_VERSION
# used for fuzzy search
# - at the begining, I tried to use nucleo, but I found it's very hard to use
# and the document is not enough.
# - but the most important thing is that its event-loop driven design, that's
# not easy for test.
# so finally I choose `nucleo-matcher` rather than `necleo`.
nucleo-matcher = "0.3.1"
bit-set = "0.8.0"
rand = "0.9.2"
getrandom = { version = "0.3", default-features = false }
getrandom_v2 = { version = "0.2", package = "getrandom" }
image = "0.25.6"
trie-rs = "0.4.2"
enum_dispatch = "0.3.13"
zip = { version = "2.2.0", default-features = false, features = ["deflate", "deflate64"] }
egui = { version = "0.31.1", features = ["persistence"] }
eframe = { version = "0.31.1", features = ["persistence"] }
egui_extras = "0.31.1"
egui_flex = "0.3.0"
egui-notify = "0.19.0"
tokio = { version = "1.44.2", features = ["sync", "macros", "io-util", "rt", "time"] }
futures = "0.3"
parking_lot = { version = "0.12", features = [] }
#iced = "0.13.1"
#cosmic-text = "0.12.1"
fontdb = "0.23.0"
rfd = "0.15.0"
open = "5.3.2"
log = { version = "0.4", features = ["std"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
[profile.release]
strip = true
lto = true