30 lines
596 B
TOML
30 lines
596 B
TOML
[package]
|
|
name = "roast-vm-core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = ["nexus"]
|
|
|
|
[dependencies]
|
|
deku = { workspace = true }
|
|
deku_derive = { workspace = true }
|
|
log = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
sevenz-rust2 = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
libloading = { workspace = true }
|
|
libffi = { workspace = true }
|
|
jni = { workspace = true }
|
|
itertools = { workspace = true }
|
|
colored = "3.0.0"
|
|
parking_lot = "0.12"
|
|
cesu8 = "1.1.0"
|
|
|
|
[build-dependencies]
|
|
bindgen = "0.72.1"
|
|
|
|
[lints.rust]
|
|
#missing_docs = "warn"
|
|
|
|
[[bin]]
|
|
name = "roast"
|
|
path = "src/main.rs" |