added metadata
This commit is contained in:
parent
e1ac6fa79f
commit
67aa88d38b
3 changed files with 23 additions and 16 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -155,7 +155,7 @@ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|||
|
||||
[[package]]
|
||||
name = "epitls-pi"
|
||||
version = "0.1.0"
|
||||
version = "1.0.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"clap",
|
||||
|
|
28
Cargo.toml
28
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 <matthieu@imagevo.fr>"]
|
||||
|
||||
[[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
|
||||
|
|
|
@ -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 <SUBCOMMAND>
|
||||
|
||||
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue