-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 1.14 KB
/
Copy pathCargo.toml
File metadata and controls
31 lines (26 loc) · 1.14 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
[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 }
libm = { version = "^0.2", default-features = false }
parking_lot = { workspace = true }
regex = { version = "1.13.1", default-features = false, features = ["unicode"] }
tracing = { workspace = true }
chrono = { version = "^0.4", default-features = false }
encoding_rs = { version = "^0.8", features = ["alloc"], default-features = false }
tracing-attributes = { version = "<0.1.29" } # Pin this to avoid compile error with no-std https://github.com/tokio-rs/tracing/issues/3388
url = { version = "^2.5", default-features = false }
zip = { version = "^8.6", features = ["deflate"], 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 }