ftth-rsipstack 4.0.3

SIP Stack Rust library for building SIP applications (without TLS and Websocket)
Documentation
1
2
3
4
5
6
7
8
9
10
use std::env;

fn main() {
    if env::var("CARGO_CFG_TARGET_ARCH")
        .map(|arch| arch == "wasm32")
        .unwrap_or(false)
    {
        panic!("ftth-rsipstack does not support wasm32 targets");
    }
}