jmespath / jmespath.rs

Rust implementation of JMESPath, a query language for JSON
MIT License
133 stars 26 forks source link

Fix syntactic error on nightly Rust #20

Closed petrochenkov closed 7 years ago

petrochenkov commented 7 years ago

The parentheses around Fn are actually a syntactic error, but they were accepted by mistake since Rust 1.6 (https://github.com/rust-lang/rust/issues/39318). This will be fixed soon (https://github.com/rust-lang/rust/pull/40043) and this code is going to stop compiling.

mtdowling commented 7 years ago

Thanks!