c898e2e01f
This allows for us to do cool stuff such as `join!(queue.send(read_command), queue.send(write_command), queue.send(read_command_2))` Signed-off-by: Anhad Singh <andypython@protonmail.com>
20 lines
443 B
TOML
20 lines
443 B
TOML
[package]
|
|
name = "virtio-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Anhad Singh <andypython@protonmail.com>"]
|
|
|
|
[dependencies]
|
|
static_assertions = "1.1.0"
|
|
bitflags = "2.3.2"
|
|
redox_syscall = "0.3"
|
|
log = "0.4"
|
|
thiserror = "1.0.40"
|
|
futures = { version = "0.3.28", features = ["executor"] }
|
|
crossbeam-queue = "0.3.8"
|
|
|
|
redox-log = "0.1"
|
|
redox_event = { git = "https://gitlab.redox-os.org/redox-os/event.git" }
|
|
|
|
pcid = { path = "../pcid" }
|