Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-04 | split the repo into a workspace | Christian Poveda | |
remove `clap` dependency :tada: update the book installation instructions | |||
2022-03-15 | disable layout tests for `derive-custom` and `convert-cpp-comment-to-rust` test | Emil Gardström | |
2017-07-08 | Intelligently convert C/C++ comments to Rust | Dylan McKay | |
With this change, we can correctly parse C++ block comments. ``` /** * Does a thing * * More documentation. This test does something * useful. */ ``` into ``` /// Does a thing /// /// More documentation. This test does something /// useful. ``` Fixes servo/rust-bindgen#426. |