24 lines
591 B
TOML
24 lines
591 B
TOML
[package]
|
|
name = "virtio-blkd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Anhad Singh <andypython@protonmail.com>"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.71"
|
|
log = "0.4"
|
|
thiserror = "1.0.40"
|
|
static_assertions = "1.1.0"
|
|
futures = { version = "0.3.28", features = ["executor"] }
|
|
spin = "*"
|
|
|
|
redox-daemon = "0.1"
|
|
redox-log = "0.1"
|
|
redox_syscall = "0.4"
|
|
partitionlib = { git = "https://gitlab.redox-os.org/redox-os/partitionlib.git" }
|
|
|
|
block-io-wrapper = { path = "../block-io-wrapper" }
|
|
common = { path = "../../common" }
|
|
pcid = { path = "../../pcid" }
|
|
virtio-core = { path = "../../virtio-core" }
|