-
- Downloads
Initial setup of the crate architecture
parents
No related branches found
No related tags found
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- AUTHORS 3 additions, 0 deletionsAUTHORS
- Cargo.lock 0 additions, 0 deletionsCargo.lock
- Cargo.toml 21 additions, 0 deletionsCargo.toml
- LICENSE 0 additions, 0 deletionsLICENSE
- README.md 12 additions, 0 deletionsREADME.md
- src/generate.rs 21 additions, 0 deletionssrc/generate.rs
- src/lib.rs 26 additions, 0 deletionssrc/lib.rs
- src/main.rs 12 additions, 0 deletionssrc/main.rs
.gitignore
0 → 100644
AUTHORS
0 → 100644
Cargo.lock
0 → 100644
This diff is collapsed.
Cargo.toml
0 → 100644
| [package] | ||
| name = "pip-tool" | ||
| version = "0.1.0" | ||
| edition = "2021" | ||
| authors = ["Michaël Hauspie <michael.hauspie@univ-lille.fr>", "Damien Amara <damien.amara@univ-lille.fr", "Gilles Grimaud <gilles.grimaud@univ-lille.fr>"] | ||
| license-file = "LICENSE" | ||
| description = "A tool to help creating and building a piece of software that can be run over the Pip protokernel" | ||
| repository = "https://gitlab.univ-lille.fr/2xs/pip/pip-tool.git" | ||
| homepage = "https://pip.univ-lille.fr" | ||
| readme = "README.md" | ||
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
| [[bin]] | ||
| path = "src/main.rs" | ||
| name = "pip-tool" | ||
| [dependencies] | ||
| anyhow = "1.0.81" | ||
| cargo-scaffold = "0.12.0" | ||
| clap = "4.5.2" |
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
src/generate.rs
0 → 100644
src/lib.rs
0 → 100644
src/main.rs
0 → 100644
Please register or sign in to comment