diff options
| author | ottjk <joshott16@gmail.com> | 2024-01-20 02:01:41 -0500 |
|---|---|---|
| committer | ottjk <joshott16@gmail.com> | 2024-01-20 02:01:41 -0500 |
| commit | d030712eeee03ad00f464a09af15229bca05ef50 (patch) | |
| tree | ff918971dc25efd3dc0a0ca47a295db6b9c46c38 /Cargo.toml | |
| download | lectern-d030712eeee03ad00f464a09af15229bca05ef50.tar.gz lectern-d030712eeee03ad00f464a09af15229bca05ef50.zip | |
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..5fe890d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "lectern" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +clap = { version = "4.4.16", features = ["derive"] } +dirs = "5.0.1" +regex = "1.10.2" +serde = { version = "1.0.195", features = ["derive"] } +tinytemplate = "1.2.1" +toml = "0.8.8" |