diff options
| author | Fuwn <[email protected]> | 2022-04-01 01:08:02 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-04-01 01:08:02 -0700 |
| commit | 7a8ce1eca588e08b085f3bb413416d2ff315d90d (patch) | |
| tree | c3df9902e984b79a46dceafbc667cc14c4501b6e /Cargo.toml | |
| download | windmark-comments-7a8ce1eca588e08b085f3bb413416d2ff315d90d.tar.xz windmark-comments-7a8ce1eca588e08b085f3bb413416d2ff315d90d.zip | |
feat: prep for 0.1.0
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..57f998a --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,27 @@ +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[package] +name = "windmark-comments" +version = "0.1.0" +authors = ["Fuwn <[email protected]>"] +edition = "2021" +description = "A comment engine module for Windmark" +readme = "README.md" +homepage = "https://github.com/gemrest/windmark-comments" +repository = "https://github.com/gemrest/windmark-comments" +license = "GPL-3.0-only" +keywords = ["gemini", "windmark"] +categories = ["web-programming"] + +[dependencies] +# Windmark +windmark = "0.1.7" + +# Date/ time +chrono = "0.4.19" + +# URL Encoding +urlencoding = "2.1.0" + +# Async +tokio = { version = "0.2.4", features = ["full"] } |