Neshura
7776da7d20
Some checks failed
Build and release binary file and packages / test (push) Successful in 29s
Run Tests on Code / run-tests (push) Successful in 29s
Build and release binary file and packages / build (push) Failing after 43s
Build and release binary file and packages / upload-generic-package (push) Has been skipped
Build and release binary file and packages / upload-debian-package (push) Has been skipped
Build and release binary file and packages / create-release (push) Has been skipped
28 lines
833 B
TOML
28 lines
833 B
TOML
[package]
|
|
authors = ["Neshura"]
|
|
name = "domainlink"
|
|
version = "0.2.0-rc.1"
|
|
edition = "2021"
|
|
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",
|
|
]
|
|
]
|
|
systemd-units = { enable = false }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
log = "0.4"
|
|
systemd-journal-logger = "2" |