knoll 0.4.0

A command-line tool for configuring macOS displays
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![cfg_attr(all(coverage_nightly, test), feature(coverage_attribute))]
///! Expose the knoll modules as part of a library.  This is only really
/// necessary so that they will be visible in the `test` directory.
extern crate static_assertions;

pub mod config;
pub mod core_graphics;
pub mod displays;
pub mod fake_displays;
pub mod indirect_logger;
pub mod knoll;
pub mod real_displays;
pub mod serde;
pub mod valid_config;