Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
Latest commit
68 lines (55 loc) · 2.29 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (55 loc) · 2.29 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
[workspace]
members = ["classfile", "jvm", "jvm-bytecode", "jvm-class-proto", "jvm-types", "rustjava-runtime"]
[workspace.package]
version = "0.1.1"
edition = "2024"
license = "MIT"
repository = "https://github.com/dlunch/RustJava"
[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.25", default-features = false, features = ["extern_crate_alloc"] }
dyn-clone = { version = "^1.0", default-features = false }
dyn-hash = { version = "^1.0", default-features = false }
hashbrown = { version = "^0.17", features = ["default-hasher"], default-features = false }
nom = { version = "^8.0", 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.52", features = ["macros"] }
classfile = { path = "classfile", version = "0.1.1" }
jvm = { path = "jvm", version = "0.1.1" }
jvm-bytecode = { path = "jvm-bytecode", version = "0.1.1" }
jvm-class-proto = { path = "jvm-class-proto", version = "0.1.1" }
jvm-types = { path = "jvm-types", version = "0.1.1" }
rustjava-runtime = { path = "rustjava-runtime", version = "0.1.1" }
test-utils = { path = "test-utils" }
[package]
name = "RustJava"
description = "An embeddable JVM and Java runtime implemented in Rust"
exclude = ["docs"]
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[lib]
name = "rust_java"
[[bin]]
name = "rust_java"
path = "src/main.rs"
[dependencies]
async-trait = { workspace = true }
bytemuck = { workspace = true }
anyhow = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "^0.3", features = ["env-filter"] }
jvm = { workspace = true }
jvm-bytecode = { workspace = true }
jvm-class-proto = { workspace = true }
rustjava-runtime = { workspace = true }
[dev-dependencies]
test-utils = { workspace = true }
[target.'cfg(not(target_arch="wasm32"))'.dependencies]
tokio = { workspace = true, features = ["rt-multi-thread", "time"] }
[target.'cfg(target_arch="wasm32")'.dependencies]
tokio = { workspace = true, features = ["rt", "time"] }