-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 702 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 702 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
[workspace]
members = ["jdk-tools"]
[package]
name = "rusty-java"
version = "0.1.0"
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[test]]
name = "integration_tests"
path = "integration_tests/main.rs"
harness = false
[dependencies]
bitflags = "2.4.2"
bumpalo = { version = "3.15.3", features = ["collections", "allocator-api2"] }
byteorder = "1.5.0"
clap = { version = "4.5.1", features = ["derive"] }
color-eyre = "0.6.2"
hashbrown = "0.14.3"
jdk-tools = { version = "0.1.0", path = "jdk-tools" }
strum = { version = "0.26.3", features = ["derive"] }
winnow = "0.6.5"
[dev-dependencies]
insta = "1.36.1"
libtest-mimic = "0.7.0"