-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
61 lines (50 loc) · 1.67 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[workspace]
resolver = "2"
members = [
"wie_backend",
"wie_cli",
"wie_util",
"wie_core_arm",
"wie_jvm_support",
"wie_wipi_java",
"wie_wipi_c",
"wie_j2me",
"wie_ktf",
"wie_lgt",
"wie_skt",
]
default-members = ["wie_cli"]
[profile.dev.package.wie_core_arm]
opt-level = 1
[profile.dev.package.arm32_cpu]
opt-level = 1
[profile.release]
lto = true
[workspace.package]
version = "0.0.1"
edition = "2021"
license = "MIT"
[workspace.dependencies]
async-recursion = { version = "^1.1", default-features = false }
async-trait = { version = "^0.1", default-features = false }
bitflags = { version = "^2.8", default-features = false }
bytemuck = { version = "^1.19", default-features = false, features = ["derive"] }
dyn-clone = { version = "^1.0", default-features = false }
spin = { version = "^0.9", features = ["spin_mutex"], default-features = false }
tracing = { version = "^0.1", default-features = false, features = ["attributes"] }
java_class_proto = { git = "https://github.com/dlunch/RustJava.git" }
java_constants = { git = "https://github.com/dlunch/RustJava.git" }
java_runtime = { git = "https://github.com/dlunch/RustJava.git" }
jvm = { git = "https://github.com/dlunch/RustJava.git" }
jvm_rust = { git = "https://github.com/dlunch/RustJava.git" }
wie_backend = { path = "wie_backend" }
wie_midp = { path = "wie_midp" }
wie_util = { path = "wie_util" }
wie_core_arm = { path = "wie_core_arm" }
wie_jvm_support = { path = "wie_jvm_support" }
wie_skvm = { path = "wie_skvm" }
wie_wipi_c = { path = "wie_wipi_c" }
wie_wipi_java = { path = "wie_wipi_java" }
# dev-dependencies
futures-test = { version = "^0.3" }
test_utils = { path = "test_utils" }