25 lines
583 B
TOML
25 lines
583 B
TOML
[package]
|
|
name = "golem-computers"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
bitfield-struct = "0.10.1"
|
|
disarm64 = "0.1.24"
|
|
jni = "0.21.1"
|
|
num-derive = "0.4.2"
|
|
num-traits = "0.2.19"
|
|
oneshot = "0.1.10"
|
|
pollster = "0.4.0"
|
|
smol = "2.0.2"
|
|
static_assertions = "1.1.0"
|
|
unicorn-engine = { version = "2.1.1", default-features = false, features = ["arch_aarch64"], git = "https://github.com/Sanae6/unicorn/", branch = "cpreg" }
|
|
zerocopy = { version = "0.8.20", features = ["derive"] }
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
debug-assertions = true
|