My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/apps/servers/octopus/Cargo.toml

30 lines
547 B

[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"
log = "*"
git2 = "0.11"
markdown = { version = "0.3.0", optional = true }
supergit = { path = "supergit" }
[build-dependencies]
askama = "0.8"
[features]
default = ["markdown-readme"]
markdown-readme = ["markdown"]
[workspace]
members = [
".",
"supergit",
]