Skip to content
Open
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-mocks --exclude type-c-interface-test-mocks"
STD_EXCLUDED_CRATES: "--exclude fw-update-interface-test-mocks --exclude type-c-interface-test-mocks"
Comment thread
RobertZ2011 marked this conversation as resolved.
jobs:

fmt:
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ members = [
"odp-service-common",
"type-c-interface",
"fw-update-interface",
"fw-update-interface-mocks",
"fw-update-interface-test-mocks",
"mctp-rs",
"type-c-interface-test-mocks",
]
Expand Down Expand Up @@ -82,19 +82,19 @@ embedded-hal-nb = "1.0"
embedded-io-async = "0.7.0"
embedded-mcu-hal = "0.3.0"
embassy-futures = "0.1.2"
embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt"}
embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt" }
embassy-sync = "0.8"
embassy-time = "0.5.1"
embassy-time-driver = "0.2.2"
embedded-batteries-async = "0.3"
embedded-cfu-protocol = { git = "https://github.com/OpenDevicePartnership/embedded-cfu"}
embedded-cfu-protocol = { git = "https://github.com/OpenDevicePartnership/embedded-cfu" }
embedded-hal = "1.0"
embedded-hal-async = "1.0"
embedded-services = { path = "./embedded-service" }
embedded-storage-async = "0.4.1"
embedded-usb-pd = { git = "https://github.com/OpenDevicePartnership/embedded-usb-pd", tag = "v0.1.0", default-features = false }
fw-update-interface = { path = "./fw-update-interface" }
fw-update-interface-mocks = { path = "./fw-update-interface-mocks" }
fw-update-interface-test-mocks = { path = "./fw-update-interface-test-mocks" }
mctp-rs = { path = "./mctp-rs" }
num_enum = { version = "0.7.5", default-features = false }
portable-atomic = { version = "1.11", default-features = false }
Expand All @@ -117,7 +117,7 @@ time-alarm-service-relay = { path = "./time-alarm-service-relay" }
type-c-interface = { path = "./type-c-interface" }
type-c-interface-test-mocks = { path = "./type-c-interface-test-mocks" }
syn = "2.0"
tps6699x = { git = "https://github.com/OpenDevicePartnership/tps6699x"}
tps6699x = { git = "https://github.com/OpenDevicePartnership/tps6699x" }
tokio = { version = "1.42.0" }
uuid = { version = "=1.17.0", default-features = false }
zerocopy = "0.8"
2 changes: 1 addition & 1 deletion cfu-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ embassy-time = { workspace = true, features = ["std", "generic-queue-8"] }
tokio = { workspace = true, features = ["rt", "macros", "time"] }
env_logger = "0.11.8"
log = { workspace = true }
fw-update-interface-mocks = { workspace = true }
fw-update-interface-test-mocks = { workspace = true }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion cfu-service/src/basic/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use embedded_cfu_protocol::protocol_definitions::{
use embedded_services::GlobalRawMutex;

use crate::mocks::customization::{FnCall as CustomizationFnCall, Mock as MockCustomization};
use fw_update_interface_mocks::basic::{FnCall as FwFnCall, Mock};
use fw_update_interface_test_mocks::basic::{FnCall as FwFnCall, Mock};
Comment thread
RobertZ2011 marked this conversation as resolved.

use std::vec;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "fw-update-interface-mocks"
name = "fw-update-interface-test-mocks"
version.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
Loading