├── .github └── workflows │ └── rust.yml ├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json └── tasks.json ├── Cargo.toml ├── LICENSE ├── README.md ├── appveyor.yml ├── azure-pipelines.yml ├── codecov.yml ├── medias └── logo.png └── rust_oss_template ├── Cargo.toml └── src └── lib.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | 3 | members = [ 4 | "rust_oss_template" 5 | ] -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/codecov.yml -------------------------------------------------------------------------------- /medias/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/medias/logo.png -------------------------------------------------------------------------------- /rust_oss_template/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/rust_oss_template/Cargo.toml -------------------------------------------------------------------------------- /rust_oss_template/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/utilForever/rust-oss-template/HEAD/rust_oss_template/src/lib.rs --------------------------------------------------------------------------------