geckodriver-librs 0.36.0

Fork of `geckodriver` to allow use as a crate in other Rust projects
Documentation
1
2
3
4
5
6
7
8
//! Naming this file `bin.rs` instead of the conventional `main.rs` helps when updating from
//! upstream. The old `main.rs` has been renamed to `lib.rs` and Git recognises this. If we named
//! this file `main.rs` then Git would think that `main.rs` had been significantly change and so
//! produce more conflicts.

fn main() {
    geckodriver_librs::bin_main();
}