peach-workspace/peach-web/Cargo.toml

53 lines
2.0 KiB
TOML
Raw Normal View History

2021-08-06 17:58:40 +00:00
[package]
name = "peach-web"
2022-01-12 11:08:30 +00:00
version = "0.5.0"
2021-08-06 17:58:40 +00:00
authors = ["Andrew Reid <gnomad@cryptolab.net>"]
edition = "2018"
description = "peach-web is a web application which provides a web interface for monitoring and interacting with the PeachCloud device. This allows administration of the single-board computer (ie. Raspberry Pi) running PeachCloud, as well as the ssb-server and related plugins."
homepage = "https://opencollective.com/peachcloud"
repository = "https://github.com/peachcloud/peach-web"
readme = "README.md"
license = "AGPL-3.0-only"
publish = false
[package.metadata.deb]
depends = "apache2-utils"
extended-description = """\
peach-web is a web application which provides a web interface for monitoring \
and interacting with the PeachCloud device. This allows administration of \
the single-board computer (ie. Raspberry Pi) running PeachCloud, as well as \
the ssb-server and related plugins."""
maintainer-scripts="debian"
systemd-units = { unit-name = "peach-web" }
assets = [
["target/release/peach-web", "/usr/bin/", "755"],
["Rocket.toml", "/usr/share/peach-web/Rocket.toml", "644"],
2021-08-06 17:58:40 +00:00
["templates/**/*", "/usr/share/peach-web/templates/", "644"],
["static/*", "/usr/share/peach-web/static/", "644"],
["static/css/*", "/usr/share/peach-web/static/css/", "644"],
["static/icons/*", "/usr/share/peach-web/static/icons/", "644"],
["static/images/*", "/usr/share/peach-web/static/images/", "644"],
["README.md", "/usr/share/doc/peach-web/README", "644"],
]
[badges]
travis-ci = { repository = "peachcloud/peach-web", branch = "master" }
maintenance = { status = "actively-developed" }
[dependencies]
async-std = "1.10"
base64 = "0.13.0"
dirs = "4.0.0"
2021-08-06 17:58:40 +00:00
env_logger = "0.8"
futures = "0.3"
2022-03-09 11:04:44 +00:00
golgi = { path = "/home/glyph/Projects/playground/rust/golgi" }
lazy_static = "1.4.0"
2021-08-06 17:58:40 +00:00
log = "0.4"
2022-03-10 09:09:26 +00:00
maud = "0.23.0"
2021-08-06 17:58:40 +00:00
peach-lib = { path = "../peach-lib" }
2022-03-10 09:09:26 +00:00
peach-network = { path = "../peach-network" }
peach-stats = { path = "../peach-stats" }
2022-03-20 13:37:02 +00:00
rouille = { version = "3.5.0", default-features = false }
temporary = "0.6.4"
2021-08-06 17:58:40 +00:00
xdg = "2.2.0"