├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── ci-tests ├── Cargo.toml └── lib.rs └── src └── lib.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuillaumeGomez/doc-comment/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuillaumeGomez/doc-comment/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuillaumeGomez/doc-comment/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuillaumeGomez/doc-comment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuillaumeGomez/doc-comment/HEAD/README.md -------------------------------------------------------------------------------- /ci-tests/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuillaumeGomez/doc-comment/HEAD/ci-tests/Cargo.toml -------------------------------------------------------------------------------- /ci-tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuillaumeGomez/doc-comment/HEAD/ci-tests/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuillaumeGomez/doc-comment/HEAD/src/lib.rs --------------------------------------------------------------------------------