DrChat / wsdl-rs

Idiomatic WSDL wrapper for Rust
https://crates.io/crates/wsdl
4 stars 1 forks source link

Stable compilation #1

Closed OvermindDL1 closed 2 months ago

OvermindDL1 commented 2 months ago

Greets, this currently does not compile on stable due to the use of the try_find nightly-only feature. It appears this is only used in one location, the .try_find(|o| Ok(o.name()? == name))? line in 341 in the current version of the source code in file wsdl.rs. Any chance on replacing it with a stable equivalent, perhaps just a loop or so? (I can submit a PR if wanted as I already have it patched locally.)

OvermindDL1 commented 2 months ago

Actually I'll go ahead and PR in my patch after I finish a fork and build/test, few minutes...

OvermindDL1 commented 2 months ago

See PR #2