Rust Package to Convert the Xpath selectors to CSS selector.
```rust fn main() { let xpath = "//*[@id='foo']"; let cssselector = xcss::xcss(xpath); println!("{}", cssselector); }
```
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.