fix(useragent): unsafe, but working implementation of ml-dsa

This commit is contained in:
hdbg
2026-04-07 15:41:50 +02:00
parent 6b8da567dd
commit a4070e7df7
104 changed files with 11133 additions and 461 deletions

17
useragent/rust/Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "rust_lib_arbiter"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "staticlib"]
[dependencies]
eframe = "0.34.1"
egui = "0.34.1"
flutter_rust_bridge = "=2.12.0"
arbiter-crypto = {path = "../../server/crates/arbiter-crypto"}
anyhow = "1.0.102"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(frb_expand)'] }