-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (42 loc) · 1.35 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "innisfree"
version = "0.3.0"
authors = ["Conor Schaefer <[email protected]>"]
edition = "2021"
description = "Exposes local services on public IPv4 address, via cloud server."
license = "AGPL-3.0-only"
readme = "README.md"
publish = true
repository = "https://github.com/conorsch/innisfree"
categories = ["command-line-utilities", "network-programming"]
keywords = ["self-hosting", "wireguard"]
[dependencies]
anyhow = "1"
async-trait = "0.1"
clap = { version = "4", features = ["env", "derive", "cargo"] }
futures = "0.3"
home = "~0.5"
ipnet = "~2"
log = "~0.4"
osshkeys = "0.7"
pnet = "~0.28"
rand = "~0.8"
reqwest = { version = "0.11", features = ["json", "rustls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.8"
tera = "1"
tokio = { version = "1.27", features = [ "io-util", "macros", "net", "rt-multi-thread", "signal"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "ansi"] }
[package.metadata.deb]
maintainer-scripts = "debian/"
depends = "$auto"
extended-description = "Creates a remote host in the cloud, then establishes a Wireguard tunnel to it. Only supports proxying TCP traffic, for now."
assets = [
["target/release/innisfree", "usr/bin/", "755"],
["[email protected]", "usr/lib/systemd/system/", "644"],
]
name = "innisfree"
priority = "optional"
section = "net"