Skip to content

Commit 3c04f6e

Browse files
committed
Update crate dependencies
1 parent f1a0eb5 commit 3c04f6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ documentation = "https://avr-rust.github.io/libc/avr_libc/"
1515
keywords = ["avr", "libc", "arduino", "avr-gcc"]
1616

1717
[build-dependencies]
18-
bindgen = "0.31"
19-
avr-mcu = "0.2"
20-
lazy_static = "0.2"
18+
bindgen = "0.54"
19+
avr-mcu = "0.3"
20+
lazy_static = "1.4"

src/rust_ctypes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub type c_uchar = u8;
1010
#[allow(dead_code)] pub type c_ushort = u16;
1111
pub type c_uint = u16;
1212
pub type c_ulong = u32;
13-
pub type c_ulonglong = u64;
13+
#[allow(dead_code)] pub type c_ulonglong = u64;
1414

1515
// Not C compliant.
1616
#[allow(dead_code)]

0 commit comments

Comments
 (0)