aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
[package]
name = "webgit"
description = "A lightweight web frontend for git repositories"
version = "0.2.0"
authors = ["Kaiden Fey <kookie@spacekookie.de>"]
edition = "2018"

[dependencies]
actix-files = "0.2"
actix-rt = "1.0.0"
actix-web = "2.0.0"
askama = "0.8"
env_logger = "0.6"
git2 = "0.11"
markdown = { version = "0.3.0", optional = true }

[build-dependencies]
askama = "0.8"

[features]
default = ["markdown-readme"]
markdown-readme = ["markdown"]

[workspace]
members = [
        ".",
        "supergit",
]