init/Cargo.toml
2023-09-29 15:45:38 -05:00

27 lines
858 B
TOML

[package]
name = "init"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tar-no-std = { path = "../tar-no-std" }
std = { path = "../std" }
bitflags = "1.3.2"
spin = "0.9.4"
tap = "1.0.1"
x86_64 = { git = "https://gitea.pterpstra.com/mikros/x86_64", features = ["experimental"] }
binread = { version = "2.2.0", path = "../binread/binread", default-features = false }
itertools = { version = "0.10.3", default-features = false, features = ["use_alloc"] }
serde = { version = "1.0.144", default-features = false, features = ["alloc", "derive"] }
postcard = { version = "1.0.2", default-features = false, features = ["alloc"] }
dev_driver_rpc = { version = "0.1.0", path = "../dev_driver_rpc" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"