123456789101112131415161718192021 |
- [package]
- name = "vcs-blog"
- version = "0.1.0"
- edition = "2021"
- description = "Blog engine running on version control system to store articles"
- license = "Apache-2.0"
- license-file = "LICENSE"
- [dependencies]
- actix-web = "4"
- actix-files = "0.6.1"
- chrono = "0.4"
- fern = "0.6"
- fluent-templates = { version = "0.7", features = ["handlebars"] }
- git2 = "0.14.4"
- handlebars = { version = "4.3", features = ["dir_source"] }
- log = "0.4"
- pulldown-cmark = "0.9"
- serde = { version = "1", features = ["derive"] }
- serde_json = "1"
- walkdir = "2.3.2"
|