-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (24 loc) · 939 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "awake-on-proxy"
version = "0.1.0"
authors = ["Thomas Schlage <[email protected]"]
edition = "2018"
description = "A TCP proxy service which will send WakeOnLan packets to awake the proxy target if it is not reachable."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.8"
log4rs = "0.8.3"
wakey = "0.1.2"
serde = { version = "1.0.102", features = ["derive"] }
serde_json = "1.0.41"
pnet = { version = "0.23.0", features = ["serde"] }
[package.metadata.deb]
maintainer = "Thomas Schlage <[email protected]>"
section = "admin"
priority = "optional"
assets = [
["target/release/awake-on-proxy", "usr/sbin/", "755"],
["assets/systemd.service", "etc/systemd/system/awake-on-proxy.service", "644"],
["assets/config.json", "etc/awake-on-proxy/config.json", "644"],
["assets/log4rs-live.yaml", "etc/awake-on-proxy/log4rs.yaml", "644"]
]