Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit 86d0f9f

Browse files
committed
Minimalist 2018-ify
1 parent 5c03ae0 commit 86d0f9f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ name = "cortex-m-semihosting"
1111
readme = "README.md"
1212
repository = "https://github.com/rust-embedded/cortex-m-semihosting"
1313
version = "0.3.4"
14+
edition = "2018"
1415

1516
[features]
1617
inline-asm = []

src/export.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use core::fmt::{self, Write};
44

55
use cortex_m::interrupt;
66

7-
use hio::{self, HStderr, HStdout};
7+
use crate::hio::{self, HStderr, HStdout};
88

99
static mut HSTDOUT: Option<HStdout> = None;
1010

src/hio.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Host I/O
22
33
use core::{fmt, slice};
4-
use nr;
4+
use crate::nr;
55

66
/// Host's standard error
77
pub struct HStderr {

0 commit comments

Comments
 (0)