Skip to content
Draft
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
21 changes: 15 additions & 6 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"dpd-api",
"dpd-client",
"dpd-types",
"dpd-types/versions",
"dropshot-apis",
"packet",
"pcap",
Expand All @@ -35,6 +36,7 @@ asic = { path = "asic" }
dpd-api = { path = "dpd-api" }
dpd-client = { path = "dpd-client" }
dpd-types = { path = "dpd-types" }
dpd-types-versions = { path = "dpd-types/versions" }
common = { path = "common" }
packet = { path = "packet" }
pcap = { path = "pcap" }
Expand Down
2 changes: 1 addition & 1 deletion asic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ doctest = false
[dependencies]
aal.workspace = true
common.workspace = true
dpd-api.workspace = true
dpd-types.workspace = true

propolis = { workspace = true, optional = true , features = ["falcon"] }
tofino = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion asic/src/tofino_asic/serdes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use crate::tofino_asic::genpd::*;
use crate::tofino_asic::ports;
use crate::tofino_asic::{CheckError, Handle};
use aal::{AsicError, AsicResult, PortHdl};
use dpd_api::{
use dpd_types::serdes::{
AnLtStatus, AnStatus, DfeAdaptationState, EncSpeed, LaneEncoding, LaneMap,
LaneStatus, LpPages, LtStatus, RxSigInfo, SerdesEye,
};
Expand Down
5 changes: 1 addition & 4 deletions dpd-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@ edition = "2024"
[dependencies]
common.workspace = true
dpd-types.workspace = true
dpd-types-versions.workspace = true
dropshot.workspace = true
dropshot-api-manager-types.workspace = true
oxnet.workspace = true
schemars.workspace = true
serde.workspace = true
transceiver-controller.workspace = true
uuid.workspace = true
Loading