2022-11-01 12:41:57 -05:00
|
|
|
[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"
|
2023-09-29 15:45:38 -05:00
|
|
|
x86_64 = { git = "https://gitea.pterpstra.com/mikros/x86_64", features = ["experimental"] }
|
2022-11-01 12:41:57 -05:00
|
|
|
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"
|
|
|
|
|