diff options
author | Federico Igne <git@federicoigne.com> | 2022-08-28 17:07:34 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2022-08-28 17:07:34 +0100 |
commit | 76328b1334e1429e1a2719af2d041ac5fa86dd0e (patch) | |
tree | a2f4145bd9e242a20f1f70993ef28bac24fc3e00 /Cargo.toml | |
parent | 3f0792e3fb1a17d99147bf2cb8ac8d2442d2cdb6 (diff) | |
download | pangler-0.3.0.tar.gz pangler-0.3.0.zip |
feat(source): provide tangled code alongside the literate programv0.3.0
On one hand this defeats the purpose of having the literate program, but
it avoids the awkward "bootstrapping" experience.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..644ee68 --- /dev/null +++ b/Cargo.toml | |||
@@ -0,0 +1,11 @@ | |||
1 | [package] | ||
2 | name = "pangler" | ||
3 | version = "0.3.0" | ||
4 | edition = "2021" | ||
5 | |||
6 | [dependencies] | ||
7 | clap = { version = "3.1", features = ["derive"] } | ||
8 | pandoc = "0.8" | ||
9 | pandoc_ast = "0.8" | ||
10 | lazy_static = "1.4" | ||
11 | regex = "1.5" \ No newline at end of file | ||