added metadata

This commit is contained in:
JOLIMAITRE Matthieu 2022-09-25 16:02:35 +02:00
parent e1ac6fa79f
commit 67aa88d38b
3 changed files with 23 additions and 16 deletions

2
Cargo.lock generated
View file

@ -155,7 +155,7 @@ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
[[package]] [[package]]
name = "epitls-pi" name = "epitls-pi"
version = "0.1.0" version = "1.0.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"clap", "clap",

View file

@ -1,24 +1,28 @@
[package] [package]
name = "epitls-pi" name = "epitls-pi"
version = "0.1.0" version = "1.0.0"
edition = "2021" 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 <matthieu@imagevo.fr>"]
[[bin]] [[bin]]
name = "pi" name = "pi"
path = "src/main.rs" path = "src/main.rs"
[dependencies] [dependencies]
chrono = "0.4.22" chrono = "0.4"
clap = { version = "3.2.22", features = ["clap_derive", "derive"] } clap = { version = "3.2", features = ["clap_derive", "derive"] }
diff = "0.1.13" diff = "0.1"
glob = "0.3.0" glob = "0.3"
notify = "5.0.0" notify = "5.0"
notify-debouncer-mini = "0.2.1" notify-debouncer-mini = "0.2"
ron = "0.8.0" ron = "0.8"
serde = { version = "1.0.144", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
termion = "1.5.6" termion = "1.5"
tree-sitter = "0.20.9" tree-sitter = "0.20"
tree-sitter-c = "0.20.2" tree-sitter-c = "0.20"
[profile.release] [profile.release]
lto = true lto = true

View file

@ -7,6 +7,8 @@ A little helper tool meant to ease the developpment of the C piscine at EPITA/To
## Usage ## Usage
```sh ```sh
epitls-pi
USAGE: USAGE:
pi <SUBCOMMAND> pi <SUBCOMMAND>
@ -16,7 +18,8 @@ OPTIONS:
SUBCOMMANDS: SUBCOMMANDS:
check Checks a source file for conformance with piscine limitations check Checks a source file for conformance with piscine limitations
help Print this message or the help of the given subcommand(s) help Print this message or the help of the given subcommand(s)
run Runs a file init
test Runs tests contained within a particular test file or run Runs a set of files or the default target
watch Watches changes to source files and re run them 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
``` ```