erickt / rust-zmq

Rust zeromq bindings.
Apache License 2.0
886 stars 189 forks source link

Checking curve support fails in 0.10.0 #375

Closed glennpierce closed 1 year ago

glennpierce commented 1 year ago

I have code like

if !zmq::has("curve").expect("some always expected") {
        panic!("Zeromq curve support required");
}   

In version = "0.9.2" this works fine. If I update to version = "0.10.0" the panic is called.

do I need todo something else for 0.10.0 ?

glennpierce commented 1 year ago

Duplicate of #357