23 lines
791 B
TOML
23 lines
791 B
TOML
[package]
|
|
name = "rdb"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.3", features = ["derive"] }
|
|
yggdrasil-rt = { path = "../../lib/runtime" }
|
|
yggdrasil-abi = { path = "../../lib/abi", features = ["serde"] }
|
|
libterm = { path = "../lib/libterm" }
|
|
|
|
serde_json = { version = "1.0.111", default-features = false, features = ["alloc"] }
|
|
serde = { version = "1.0.193", features = ["derive"], default-features = false }
|
|
thiserror = "1.0.58"
|
|
elf = "0.7.4"
|
|
rangemap = "1.5.1"
|
|
|
|
[target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies]
|
|
iced-x86 = { version = "1.21.0", default-features = false, features = ["gas", "decoder", "std"] }
|
|
|
|
[dev-dependencies]
|
|
iced-x86 = { version = "1.21.0", default-features = false, features = ["gas", "decoder", "std"] }
|