diff options
author | Soispha <soispha@vhack.eu> | 2023-06-18 16:32:47 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-06-18 16:32:47 +0200 |
commit | 369bf07cbb36d8e72025014bfd4ddc52d9049fde (patch) | |
tree | 545b32762ec8af521484f6c520dc568edaf8a2f7 /Cargo.toml | |
download | lpm-369bf07cbb36d8e72025014bfd4ddc52d9049fde.tar.gz lpm-369bf07cbb36d8e72025014bfd4ddc52d9049fde.zip |
Chore: Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..523883c --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "lpm" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +chrono = { version = "0.4.26", features = ["alloc"] } +clap = { version = "4.3.4", features = ["derive"] } +convert_case = "0.6.0" +serde = { version = "1.0.164", features = ["derive"] } +serde_derive = "1.0.164" +toml = "0.7.4" |