domainlink/Cargo.toml

36 lines
1,023 B
TOML
Raw Permalink Normal View History

2024-04-08 15:17:25 +00:00
[package]
2024-04-08 15:51:04 +00:00
authors = ["Neshura"]
2024-04-08 15:17:25 +00:00
name = "domainlink"
2024-04-10 21:26:16 +00:00
version = "1.0.1"
2024-04-08 15:17:25 +00:00
edition = "2021"
2024-04-08 15:51:04 +00:00
description = "Lightweight tool for handling (sub-)domain to URL redirects instead of having to deal with copy and pasting proxy rules"
license = "GPL-3.0-or-later"
[package.metadata.deb]
extended-description = "Lightweight tool for handling (sub-)domain to URL redirects instead of having to deal with copy and pasting proxy rules"
maintainer-scripts = "debian/"
revision = "1"
depends = ["libc6", "libssl3", "systemd"]
assets = [
[
"target/release/domainlink",
"/usr/local/bin/domainlink",
"755",
],
[
"debian/app_config.toml",
"/usr/local/share/domainlink/config.toml",
"755",
2024-04-08 15:51:04 +00:00
]
]
systemd-units = { enable = false }
2024-04-08 15:17:25 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-08 15:51:04 +00:00
actix-web = "4"
confy = "0.6"
2024-04-08 15:51:04 +00:00
log = "0.4"
notify = "6"
systemd-journal-logger = "2"
serde = { version = "1.0.197", features = ["derive"] }