| # Licensed under the Apache-2.0 license |
| |
| [package] |
| name = "openprot-mctp-server" |
| version = "0.1.0" |
| edition = "2021" |
| description = "MCTP server implementation for OpenPRoT" |
| license = "Apache-2.0" |
| # main.rs is a Pigweed binary built by Bazel only. |
| autobins = false |
| |
| [dependencies] |
| openprot-mctp-api = { path = "../api" } |
| mctp-stack = { git = "https://github.com/9elements/mctp-lib.git", branch = "buildup", package = "mctp-lib" } |
| mctp = { git = "https://github.com/OpenPRoT/mctp-rs.git", branch = "sync-features", default-features = false } |
| heapless = { workspace = true } |
| |
| [dev-dependencies] |
| mctp-stack = { git = "https://github.com/9elements/mctp-lib.git", branch = "buildup", package = "mctp-lib" } |
| mctp = { git = "https://github.com/OpenPRoT/mctp-rs.git", branch = "sync-features" } |