test_proc/Cargo.toml

24 lines
692 B
TOML
Raw Normal View History

2022-11-01 12:45:49 -05:00
[package]
name = "test_proc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dev_driver_rpc = { version = "0.1.0", path = "../dev_driver_rpc" }
postcard = { version = "1.0.2", default-features = false, features = ["alloc"] }
serde = { version = "1.0.144", default-features = false, features = ["alloc", "derive"] }
std = { path = "../std" }
bitflags = "1.3.2"
spin = "0.9.4"
tap = "1.0.1"
x86_64 = { git = "https://github.com/pjht/x86_64", features = ["experimental"] }
file_rpc = { version = "0.1.0", path = "../file_rpc" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"