renet/src/lib.rs

14 lines
221 B
Rust
Raw Normal View History

#![feature(range_contains, associated_consts)]
2016-12-10 17:23:40 +08:00
#![no_std]
2016-12-11 07:15:26 +08:00
extern crate byteorder;
#[cfg(any(test, feature = "std"))]
2016-12-10 17:23:40 +08:00
#[macro_use]
extern crate std;
2016-12-11 07:15:26 +08:00
#[cfg(feature = "std")]
extern crate libc;
2016-12-10 17:23:40 +08:00
2016-12-11 02:33:19 +08:00
pub mod phy;
pub mod wire;