mundy 0.1.1

Reads various system-level accessibility and UI preferences
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(unused_imports, dead_code)]

#[cfg(any(
    target_os = "linux",
    target_os = "macos",
    all(target_family = "wasm", target_os = "unknown")
))]
mod scan;
#[cfg(any(
    target_os = "linux",
    target_os = "macos",
    all(target_family = "wasm", target_os = "unknown")
))]
pub(crate) use scan::*;

mod dedup;
pub(crate) use dedup::*;