caliphui 0.1.1

A simple tool to calibrate and convert pH measurements using a two point method
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![forbid(unsafe_code)]
#![cfg_attr(not(debug_assertions), deny(warnings))] // Forbid warnings in release builds
#![warn(clippy::all, rust_2018_idioms)]
#![windows_subsystem = "windows"]

// When compiling natively:
#[cfg(not(target_arch = "wasm32"))]
fn main() {
    let app = caliphui::TemplateApp::default();
    let native_options = eframe::NativeOptions::default();
    eframe::run_native(Box::new(app), native_options);
}