Skip to content

Commit

Permalink
storage: unify protocol usage
Browse files Browse the repository at this point in the history
Unify the storage api between SCSI and NVMe

Signed-off-by: Wilfred Mallawa <wilfred.mallawa@wdc.com>
  • Loading branch information
twilfredo committed Aug 15, 2024
1 parent 60a0d86 commit 970d904
Show file tree
Hide file tree
Showing 8 changed files with 358 additions and 947 deletions.
117 changes: 68 additions & 49 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ default = ["std"]
libspdm_tests = []

no_std = []
std = ["clap", "memmap2", "once_cell", "sha2", "env_logger", "serialport", "lazy_static", "colored", "which", "asn1-rs", "x509-parser", "minicbor", "minicbor-derive", "async-std", "futures", "nix"]
std = ["clap", "memmap2", "once_cell", "sha2", "env_logger", "serialport", "lazy_static", "colored", "which", "asn1-rs", "x509-parser", "minicbor", "minicbor-derive", "async-std", "futures", "nix", "page_size"]

[lib]
name = "libspdm"
Expand Down Expand Up @@ -45,5 +45,6 @@ minicbor-derive = { git = "https://gitlab.com/twittner/minicbor.git", features =
async-std = { version = "1.12", features = ["attributes"], optional = true }
futures = { version = "0.3", optional = true }
nix = {version = "0.29.0", features = ["user", "fs", "ioctl"], optional = true }
page_size = { version = "0.6.0", optional = true }

libmctp = { git = "https://github.com/westerndigitalcorporation/libmctp.git" }
Loading

0 comments on commit 970d904

Please sign in to comment.