mirror of
https://github.com/saymrwulf/swisspost-evoting-go-poc.git
synced 2026-09-04 20:23:55 +00:00
19 lines
492 B
TOML
19 lines
492 B
TOML
|
|
[package]
|
||
|
|
name = "transportsec"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
description = "Transport security primitives (Ed25519 signatures, X25519 ECDH) for the e-voting PoC, exposed via C ABI to Go"
|
||
|
|
license = "Apache-2.0"
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
crate-type = ["staticlib"]
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
||
|
|
x25519-dalek = { version = "2", features = ["static_secrets"] }
|
||
|
|
rand_core = { version = "0.6", features = ["getrandom"] }
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
opt-level = 3
|
||
|
|
lto = true
|