Spracherkennung für: .rs vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
//! WASM (FFI) bindings.
#![allow(
clippy::allow_attributes,
reason = "
https://github.com/rust-lang/rust-clippy/issues/14008"
)]
use logging::{LogDispatcher, LogLevel, PanicDispatcher, init_logging, init_panic_disp
atcher};
use wasm_bindgen::prelude::*;
// The crypto dependencies require getrandom and we need to explicitly list it as a dependency
// when compiling for WASM since it requires the feature 'js'. If we don't declare this here,
// the linter will pick it up as an unused dependency.
mod external_crate_false_positives {
use getrandom as _;
}
pub mod crypto;
pub mod d2d_rendezvous;
pub mod https;
pub mod logging;
pub mod remote_secret;
/// Initialise libthreema.
///
/// IMPORTANT: This must be called **once** before making any other calls to libthreema in order to
/// set up the panic and log dispatcher.
#[wasm_bindgen(js_name = init)]
pub fn init(panic_dispatcher: PanicDispatcher, logger: &LogDispatcher, min_log_level: LogLevel) {
init_panic_dispatcher(panic_dispatcher);
init_logging(logger, min_log_level);
}
[Dauer der Verarbeitung: 0.19 Sekunden, vorverarbeitet 2026-04-27]