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: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ concurrency:
name: check
env:
# Crates that require std and won't build on embedded-targets
STD_EXCLUDED_CRATES: "--exclude fw-update-interface-test-mocks --exclude type-c-interface-test-mocks --exclude power-policy-interface-test-mocks"
STD_EXCLUDED_CRATES: "--exclude fw-update-interface-test-mocks --exclude tcpm-interface-test-mocks --exclude power-policy-interface-test-mocks"
jobs:

fmt:
Expand Down
5 changes: 4 additions & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
/espi-service @OpenDevicePartnership/ec-espi-team
/hid-service @OpenDevicePartnership/ec-hid-team
/power-policy-service @OpenDevicePartnership/ec-battery-team @OpenDevicePartnership/ec-usb-c-pd-team
/type-c-service @OpenDevicePartnership/ec-usb-c-pd-team
/tcpm-service @OpenDevicePartnership/ec-usb-c-pd-team
/tcpm-interface @OpenDevicePartnership/ec-usb-c-pd-team
/tcpm-interface-test-mocks @OpenDevicePartnership/ec-usb-c-pd-team
/tcpm-interface-mocks @OpenDevicePartnership/ec-usb-c-pd-team

# Any changes in the supply-chain folder needs approval
# from auditors as it relates to cargo vet
Expand Down
120 changes: 60 additions & 60 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ members = [
"time-alarm-service",
"time-alarm-service-interface",
"time-alarm-service-relay",
"type-c-service",
"tcpm-service",
"debug-service",
"debug-service-messages",
"keyboard-service",
"power-policy-interface",
"odp-service-common",
"type-c-interface",
"tcpm-interface",
"fw-update-interface",
"fw-update-interface-test-mocks",
"mctp-rs",
"type-c-interface-mocks",
"type-c-interface-test-mocks",
"tcpm-interface-mocks",
"tcpm-interface-test-mocks",
"power-policy-interface-test-mocks",
]
exclude = ["examples/*"]
Expand Down Expand Up @@ -121,9 +121,9 @@ thermal-service-interface = { path = "./thermal-service-interface" }
thermal-service-relay = { path = "./thermal-service-relay" }
time-alarm-service-interface = { path = "./time-alarm-service-interface" }
time-alarm-service-relay = { path = "./time-alarm-service-relay" }
type-c-interface = { path = "./type-c-interface" }
type-c-interface-mocks = { path = "./type-c-interface-mocks" }
type-c-interface-test-mocks = { path = "./type-c-interface-test-mocks" }
tcpm-interface = { path = "./tcpm-interface" }
tcpm-interface-mocks = { path = "./tcpm-interface-mocks" }
tcpm-interface-test-mocks = { path = "./tcpm-interface-test-mocks" }
typenum = "1.20"
syn = "2.0"
tokio = { version = "1.42.0" }
Expand Down
60 changes: 30 additions & 30 deletions examples/std/Cargo.lock

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

4 changes: 2 additions & 2 deletions examples/std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ cfu-service = { path = "../../cfu-service", features = ["log"] }
embedded-cfu-protocol = { git = "https://github.com/OpenDevicePartnership/embedded-cfu" }

battery-service = { path = "../../battery-service", features = ["log", "mock"] }
type-c-service = { path = "../../type-c-service", features = ["log"] }
type-c-interface = { path = "../../type-c-interface", features = ["log"] }
tcpm-service = { path = "../../tcpm-service", features = ["log"] }
tcpm-interface = { path = "../../tcpm-interface", features = ["log"] }

thermal-service = { path = "../../thermal-service", features = ["log", "mock"] }
thermal-service-interface = { path = "../../thermal-service-interface" }
Expand Down
Loading
Loading