-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
42 lines (39 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "mctp-dev"
description = "MCTP device emulation as a standalone process"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0"
repository = "https://github.com/CodeConstruct/mctp-dev"
categories = ["network-programming", "hardware-support"]
[features]
nvme-mi = ["dep:nvme-mi-dev"]
pldm = ["dep:hex", "dep:pldm", "dep:pldm-file", "dep:pldm-platform", "dep:sha2"]
[dependencies]
anyhow = "1.0.86"
argh = "0.1.12"
async-channel = "2.3.1"
async-io = "2.3.4"
async-net = "2.0.0"
critical-section = { version = "1.2.0", features = ["std"] }
embedded-io-adapters = { version = "0.6", features = [ "futures-03" ] }
embedded-io-async = { version = "0.6" }
futures = "0.3.31"
futures-io = "0.3.30"
hex = { version = "0.4.3", optional = true }
log = "0.4.22"
mctp = "0.2.0"
mctp-estack = { git = "https://github.com/CodeConstruct/mctp-rs", rev = "77da3b1c4d35b7c9ba37747da968d29fc4cde696", package = "mctp-estack" }
nvme-mi-dev = { git = "https://github.com/CodeConstruct/nvme-mi-dev", branch = "main", optional = true }
polling = "3.7.4"
pldm = { git = "https://github.com/CodeConstruct/mctp-rs", rev = "77da3b1c4d35b7c9ba37747da968d29fc4cde696", package = "pldm", optional = true }
pldm-file = { git = "https://github.com/CodeConstruct/mctp-rs", rev = "77da3b1c4d35b7c9ba37747da968d29fc4cde696", package = "pldm-file", optional = true }
pldm-platform = { git = "https://github.com/CodeConstruct/mctp-rs", rev = "77da3b1c4d35b7c9ba37747da968d29fc4cde696", package = "pldm-platform", optional = true }
sha2 = {version = "0.10.9", optional = true }
simplelog = "0.12.2"
smol = "2.0.0"
usbredirparser = { git = "https://github.com/CodeConstruct/usbredir-rs", branch = "main", package = "usbredirparser" }
uuid = { version = "1.16.0", features = ["v4"] }
# update nvme-mi-dev mctp dependency
[patch.crates-io]
mctp = { git = "https://github.com/CodeConstruct/mctp-rs", rev = "77da3b1c4d35b7c9ba37747da968d29fc4cde696", package = "mctp" }