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
49 changes: 0 additions & 49 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ defmt = { version = "0.3", optional = true }
embedded-hal-async = "1.0.0"
bitfield = "0.19.0"
bincode = { version = "2.0.1", default-features = false }
aquamarine = "0.6.0"

[features]
default = []
Expand Down
1 change: 1 addition & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ ignore = [
#{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" },
{ id = "RUSTSEC-2024-0370", reason = "proc-macro-error is unmaintained, no safe upgrade available, need upstream dependencies to migrate away from it." },
{ id = "RUSTSEC-2025-0141", reason = "bincode is unmaintained, planning on migrating to an alternative." },
{ id = "RUSTSEC-2026-0173", reason = "proc-macro-error2 is unmaintained, no safe upgrade available, need upstream dependencies to migrate away from it." },
Comment thread
RobertZ2011 marked this conversation as resolved.
]
# If this is true, then cargo deny will use the git executable to fetch advisory database.
# If this is false, then it uses a built-in git library.
Expand Down
4 changes: 1 addition & 3 deletions src/ucsi/ppm/state_machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,7 @@ pub struct InvalidTransition<'a, T: PortId> {
pub input: Input<'a, T>,
}

// Doctest tries to compile the mermaid code as rust so just disable it
#[cfg_attr(not(doctest), aquamarine::aquamarine)]
#[cfg_attr(not(doctest), doc = "include_mmd!(\"docs/ucsi/ppm_state_machine.mmd\")")]
/// PPM State Machine
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
pub struct StateMachine<T: PortId> {
Expand Down
Loading