Skip to content

Commit

Permalink
Add missing imports for no_std
Browse files Browse the repository at this point in the history
  • Loading branch information
thombles committed Jun 2, 2024
1 parent 4fa34a6 commit e172cf7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ax25/src/frame.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
use alloc::borrow::ToOwned;
use alloc::fmt;
use alloc::str::FromStr;
use alloc::string::{String, ToString};
use alloc::vec::Vec;
use alloc::{vec, vec::Vec};

/// Errors when parsing a callsign-SSID into an `Address`
#[derive(Debug)]
Expand Down

0 comments on commit e172cf7

Please sign in to comment.