2021-05-30 03:50:19 +10:00
|
|
|
/* OpenTally: Open-source election vote counting
|
|
|
|
* Copyright © 2021 Lee Yingtong Li (RunasSudo)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-06-16 17:20:29 +10:00
|
|
|
#![warn(missing_docs)]
|
|
|
|
|
|
|
|
//! Open source counting software for various preferential voting election systems
|
|
|
|
|
2021-07-23 16:45:54 +10:00
|
|
|
/// File parsers
|
|
|
|
pub mod parser;
|
2021-06-27 17:44:30 +10:00
|
|
|
/// Data types and logic for constraints on elections
|
|
|
|
pub mod constraints;
|
2021-06-14 20:43:36 +10:00
|
|
|
/// Data types for representing abstract elections
|
2021-05-30 03:50:19 +10:00
|
|
|
pub mod election;
|
2021-06-14 20:43:36 +10:00
|
|
|
/// Smart logging framework
|
2021-05-30 03:50:19 +10:00
|
|
|
pub mod logger;
|
2021-06-14 20:43:36 +10:00
|
|
|
/// Implementations of different numeric representations
|
2021-05-30 03:50:19 +10:00
|
|
|
pub mod numbers;
|
2021-06-14 20:43:36 +10:00
|
|
|
/// Deterministic random number generation using SHA256
|
2021-06-13 03:15:15 +10:00
|
|
|
pub mod sharandom;
|
2021-06-14 20:43:36 +10:00
|
|
|
/// STV counting logic
|
2021-05-30 03:50:19 +10:00
|
|
|
pub mod stv;
|
2021-06-14 20:43:36 +10:00
|
|
|
/// Tie-breaking methods
|
2021-06-12 02:09:26 +10:00
|
|
|
pub mod ties;
|
2021-06-03 21:35:25 +10:00
|
|
|
|
|
|
|
use git_version::git_version;
|
2021-06-04 15:01:53 +10:00
|
|
|
use wasm_bindgen::prelude::wasm_bindgen;
|
2021-06-03 21:35:25 +10:00
|
|
|
|
2021-06-14 20:43:36 +10:00
|
|
|
/// The git revision of this OpenTally build
|
2021-06-03 21:35:25 +10:00
|
|
|
pub const VERSION: &str = git_version!(args=["--always", "--dirty=-dev"], fallback="unknown");
|
2021-06-04 15:01:53 +10:00
|
|
|
|
2021-06-14 20:43:36 +10:00
|
|
|
/// Get [VERSION] as a String (for WebAssembly)
|
2021-06-04 15:01:53 +10:00
|
|
|
#[wasm_bindgen]
|
|
|
|
pub fn version() -> String { VERSION.to_string() }
|