Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ progenitor-client = "0.10.0"
proptest = "1.5.0"
quote = "1.0"
rand = "0.9.1"
rand_pcg = "0.9.0"
reqwest = { version = "0.12.0", default-features = false }
ring = "0.17"
ron = "0.8"
Expand Down
2 changes: 2 additions & 0 deletions lib/propolis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ tempfile.workspace = true
slog-term.workspace = true
slog-async.workspace = true
rand.workspace = true
rand_pcg.workspace = true
ron.workspace = true

[features]
default = []
Expand Down
3 changes: 3 additions & 0 deletions lib/propolis/src/hw/nvme/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ mod cmds;
mod queue;
mod requests;

#[cfg(test)]
mod test;

use bits::*;
use queue::{CompQueue, Permit, QueueId, SubQueue};

Expand Down
Loading
Loading