This repository was archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 1.31 KB
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
28
29
30
31
32
[package]
name = "wpm-api-vyos"
version = "0.0.0-git"
edition = "2021"
authors = ["Nico Felbinger <https://github.com/secshellnet>"]
license = "AGPL-3.0"
description = "API package for wireguard peer manager on vyos"
[dependencies]
tokio = { version = "1.32", default-features = false, features = ["macros", "rt-multi-thread", "net", "signal", "sync", "process"] }
tokio-tungstenite = { version = "0.20", default-features = false, features = ["handshake"] }
tracing-subscriber = { version = "0.3", features = ["tracing-log"] }
clap = { version = "4.4", features = ["derive", "env"] }
tracing = { version = "0.1", features = [] }
axum = { version = "0.6", features = ["macros"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tower = "0.4"
http = "0.2"
base64 = "0.21"
regex = "1.9"
tower-http = { version = "0.4", features = ["sensitive-headers", "trace", "validate-request", "auth"], default-features = false }
[package.metadata.deb]
maintainer-scripts = "debian/"
systemd-units = { enable = false }
assets = [
["target/x86_64-unknown-linux-musl/release/wpm-api-vyos", "/opt/vyatta-wpm-api/wpm-api-vyos", "755"],
["debian/etc/default/wpm-api", "/etc/default/wpm-api", "640"],
["debian/opt/**/*", "/opt/", "644"],
["debian/opt/vyatta-wpm-api/config.py", "/opt/vyatta-wpm-api/config.py", "755"],
]