utkarshkukreti / select.rs

A Rust library to extract useful data from HTML documents, suitable for web scraping.
MIT License
971 stars 69 forks source link

Add nightly warning #52

Closed ghost closed 5 years ago

ghost commented 6 years ago

select.rs uses #![feature] which is a nightly-only feature.

Maybe it should be mentionned somewhere?

utkarshkukreti commented 5 years ago

The feature tags were only used in tests and benchmarks at the time you opened the issue, not when you were just using this crate as a dependency. I upgraded the tests to no longer use feature. The benchmarks still require it as the test crate is unstable. Anyways you shouldn't need nightly to use this library in your project.