-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (45 loc) · 1.83 KB
/
Cargo.toml
File metadata and controls
56 lines (45 loc) · 1.83 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
[workspace]
members = ["classfile", "java_runtime", "jvm", "jvm_rust", "test_utils"]
[workspace.package]
version = "0.0.1"
edition = "2024"
license = "MIT"
[workspace.dependencies]
anyhow = { version = "^1.0", default-features = false }
async-recursion = { version = "^1.0", default-features = false }
async-trait = { version = "^0.1", default-features = false }
bytemuck = { version = "^1.24", default-features = false, features = ["extern_crate_alloc"] }
dyn-clone = { version = "^1.0", default-features = false }
dyn-hash = { version = "^0.2", default-features = false }
hashbrown = { version = "^0.15", features = ["default-hasher"], default-features = false }
nom = { version = "^7.1", default-features = false, features = ["alloc"] }
parking_lot = { version = "^0.12", default-features = false }
tracing = { version = "^0.1", default-features = false, features = ["attributes"] }
tokio = { version = "^1.48", features = ["macros"] }
classfile = { path = "classfile" }
java_class_proto = { path = "java_class_proto" }
java_constants = { path = "java_constants" }
java_runtime = { path = "java_runtime" }
jvm = { path = "jvm" }
jvm_rust = { path = "jvm_rust" }
test_utils = { path = "test_utils" }
[package]
name = "rust_java"
version.workspace = true
edition.workspace = true
license.workspace = true
[[bin]]
name = "rust_java"
[dependencies]
async-trait = { workspace = true }
bytemuck = { workspace = true }
anyhow = { workspace = true }
tracing-subscriber = { version = "^0.3", features = ["env-filter"] }
jvm = { workspace = true }
jvm_rust = { workspace = true }
java_class_proto = { workspace = true }
java_runtime = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { workspace = true, features = ["rt-multi-thread"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
tokio = { workspace = true, features = ["rt"] }