aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 29827cb1a389a35e5810709933b0a64dff869911 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "wgconfd"
version = "0.1.1"
edition = "2018"
authors = [ "Hristo Venev <hristo@venev.name>" ]
license = "LGPL-3.0"
description = "A configuration manager for WireGuard"
repository = "https://git.venev.name/hristo/wgconfd"
readme = "README.md"
keywords = [ "wireguard" ]

[dependencies]
arrayref = { version = "0.3.5" }
base64 = { version = "0.10.1" }
serde = { version = "1.0.89" }
serde_derive = { version = "1.0.89" }
serde_json = { version = "1.0.39" }
chrono = { version = "0.4.6", default-features = false }
toml = { version = "0.5" }

[profile.release]
panic = "abort"
lto = true