libdisplay_info_sys/
lib.rs

1#![cfg_attr(docsrs, feature(doc_auto_cfg))]
2#![allow(non_upper_case_globals)]
3#![allow(non_camel_case_types)]
4#![allow(non_snake_case)]
5
6#[cfg_attr(docsrs, cfg(feature = "v0_1"))]
7#[cfg_attr(
8    not(docsrs),
9    cfg(all(feature = "v0_1", not(feature = "v0_2"), not(feature = "v0_3")))
10)]
11pub mod v0_1;
12
13#[cfg_attr(docsrs, cfg(feature = "v0_2"))]
14#[cfg_attr(not(docsrs), cfg(all(feature = "v0_2", not(feature = "v0_3"))))]
15pub mod v0_2;
16
17#[cfg(feature = "v0_3")]
18pub mod v0_3;
19
20#[cfg(feature = "auto")]
21pub mod auto;
22#[cfg(feature = "auto")]
23pub use auto::*;