-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 918 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 918 Bytes
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
[package]
name = "java_runtime"
version.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
async-trait = { workspace = true }
bytemuck = { workspace = true }
dyn-clone = { workspace = true }
hashbrown = { workspace = true }
parking_lot = { workspace = true }
tracing = { workspace = true }
chrono = { version = "^0.4", default-features = false }
encoding_rs = { version = "^0.8", features = ["alloc"], default-features = false }
event-listener = { version = "^5.4", default-features = false }
zip = { version = "^4.5", features = ["deflate"], default-features = false }
url = { version = "^2.5", default-features = false }
java_class_proto = { workspace = true }
java_constants = { workspace = true }
jvm = { workspace = true }
[dev-dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "time"] }
jvm_rust = { workspace = true }
test_utils = { workspace = true }