Skip to content
Merged
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
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Whitespace-only changes
7cb947fb3820d02ac4aef3ce1244443a3a46ca8a
31 changes: 31 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ members = [
"aal_macros",
"common",
"dpd",
"dpd-api",
"dpd-client",
"dpd-types",
"packet",
"pcap",
"swadm",
Expand All @@ -29,7 +31,9 @@ panic = "abort"
aal = { path = "aal" }
aal_macros = { path = "aal_macros" }
asic = { path = "asic" }
dpd-api = { path = "dpd-api" }
dpd-client = { path = "dpd-client" }
dpd-types = { path = "dpd-types" }
common = { path = "common" }
packet = { path = "packet" }
pcap = { path = "pcap" }
Expand Down
13 changes: 13 additions & 0 deletions dpd-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "dpd-api"
version = "0.1.0"
edition = "2024"

[dependencies]
common.workspace = true
dpd-types.workspace = true
dropshot.workspace = true
oxnet.workspace = true
schemars.workspace = true
serde.workspace = true
transceiver-controller.workspace = true
Loading