[package]
edition = "2024"
rust-version = "1.90"
name = "rust_ev_system_library"
version = "0.3.3"
authors = ["Denis Morel"]
build = false
exclude = ["/specs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of E-Voting system library functionalities for the Verifier"
readme = "README.md"
keywords = [
"math",
"e-voting",
"crypto",
]
categories = [
"cryptography",
"mathematics",
]
license = "GPL-3.0+"
repository = "https://github.com/de-mo/rust_ev_verifier_lib"
[features]
default = []
gmpmee = ["rust_ev_crypto_primitives/gmpmee"]
[lib]
name = "rust_ev_system_library"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.rayon]
version = "1"
[dependencies.regex]
version = "1"
[dependencies.roxmltree]
version = "0.21"
[dependencies.rust_ev_crypto_primitives]
version = "0.8.4"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.xml-canonicalization]
version = "0.1"
[dependencies.xot]
version = "0.31"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
features = ["arbitrary_precision"]