From 67aa88d38be45e1361586c105a1890c8d6cd3aeb Mon Sep 17 00:00:00 2001 From: JOLIMAITRE Matthieu Date: Sun, 25 Sep 2022 16:02:35 +0200 Subject: [PATCH] added metadata --- Cargo.lock | 2 +- Cargo.toml | 28 ++++++++++++++++------------ README.md | 9 ++++++--- 3 files changed, 23 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1001cee..6202cea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -155,7 +155,7 @@ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" [[package]] name = "epitls-pi" -version = "0.1.0" +version = "1.0.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 5e0341b..40ac690 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,24 +1,28 @@ [package] name = "epitls-pi" -version = "0.1.0" +version = "1.0.0" edition = "2021" +license = "GPL-3" +description = "A little helper tool meant to ease the developpment of the C piscine at EPITA/Toulouse." +repository = "https://github.com/MajorBarnulf/epitls-pi" +authors = ["JOLIMAITRE Matthieu "] [[bin]] name = "pi" path = "src/main.rs" [dependencies] -chrono = "0.4.22" -clap = { version = "3.2.22", features = ["clap_derive", "derive"] } -diff = "0.1.13" -glob = "0.3.0" -notify = "5.0.0" -notify-debouncer-mini = "0.2.1" -ron = "0.8.0" -serde = { version = "1.0.144", features = ["derive"] } -termion = "1.5.6" -tree-sitter = "0.20.9" -tree-sitter-c = "0.20.2" +chrono = "0.4" +clap = { version = "3.2", features = ["clap_derive", "derive"] } +diff = "0.1" +glob = "0.3" +notify = "5.0" +notify-debouncer-mini = "0.2" +ron = "0.8" +serde = { version = "1.0", features = ["derive"] } +termion = "1.5" +tree-sitter = "0.20" +tree-sitter-c = "0.20" [profile.release] lto = true diff --git a/README.md b/README.md index f5868bb..6e3f2b5 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ A little helper tool meant to ease the developpment of the C piscine at EPITA/To ## Usage ```sh +epitls-pi + USAGE: pi @@ -16,7 +18,8 @@ OPTIONS: SUBCOMMANDS: check Checks a source file for conformance with piscine limitations help Print this message or the help of the given subcommand(s) - run Runs a file - test Runs tests contained within a particular test file or - watch Watches changes to source files and re run them + init + run Runs a set of files or the default target + test Runs tests contained within a particular test file or the default test file + watch Watches changes to the project included files and runs a command on changes ```