embedded-graphics 0.6.0-alpha.2

Embedded graphics library for small hardware displays
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! This file includes the contents of the project's README.md so the code examples in it can be run
//! as Rust doc tests

macro_rules! doc {
    ($e:expr) => {
        #[doc = $e]
        extern {}
    };
}

doc!(include_str!("../README.md"));