2021-05-29 19:50:19 +02: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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
pub mod election;
|
|
|
|
pub mod logger;
|
|
|
|
pub mod numbers;
|
2021-06-12 19:15:15 +02:00
|
|
|
pub mod sharandom;
|
2021-05-29 19:50:19 +02:00
|
|
|
pub mod stv;
|
2021-06-11 18:09:26 +02:00
|
|
|
pub mod ties;
|
2021-06-03 13:35:25 +02:00
|
|
|
|
|
|
|
use git_version::git_version;
|
2021-06-04 07:01:53 +02:00
|
|
|
use wasm_bindgen::prelude::wasm_bindgen;
|
2021-06-03 13:35:25 +02:00
|
|
|
|
|
|
|
pub const VERSION: &str = git_version!(args=["--always", "--dirty=-dev"], fallback="unknown");
|
2021-06-04 07:01:53 +02:00
|
|
|
|
|
|
|
#[wasm_bindgen]
|
|
|
|
pub fn version() -> String { VERSION.to_string() }
|