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.)
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.)