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)]
|
2021-10-27 19:52:51 +11:00
|
|
|
#![allow(clippy::collapsible_else_if, clippy::collapsible_if, clippy::comparison_chain, clippy::derive_ord_xor_partial_ord, clippy::needless_bool, clippy::needless_return, clippy::new_without_default, clippy::too_many_arguments)]
|
2021-06-16 17:20:29 +10:00
|
|
|
|
|
|
|
//! Open source counting software for various preferential voting election systems
|
|
|
|
|
2022-08-21 03:37:12 +10:00
|
|
|
/// Helper newtype for HashMap on [election::Candidate]s
|
|
|
|
pub mod candmap;
|
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-08-20 02:16:54 +10:00
|
|
|
/// File parsers
|
|
|
|
pub mod parser;
|
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-08-20 02:16:54 +10:00
|
|
|
/// File writers
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
pub mod writer;
|
|
|
|
|
|
|
|
/// CLI implementations
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
pub mod cli;
|
2021-06-03 21:35:25 +10:00
|
|
|
|
|
|
|
use git_version::git_version;
|
2021-10-26 00:55:31 +11:00
|
|
|
#[allow(unused_imports)]
|
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-10-18 18:06:42 +11:00
|
|
|
#[cfg_attr(feature = "wasm", wasm_bindgen)]
|
2021-06-04 15:01:53 +10:00
|
|
|
pub fn version() -> String { VERSION.to_string() }
|