-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
47 lines (38 loc) · 1.21 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
45
46
47
[package]
name = "zerotier-edge"
version = "0.2.1"
authors = ["YISH <mokeyish@hotmail.com>"]
edition = "2021"
keywords = ["zerotier", "ui", "self-hosted"]
description = """
A ZeroTier Controller Web UI for a self-hosted ZeroTier network controller that deploied at your edge.
"""
homepage = "https://github.com/mokeyish/zerotier-edge"
repository = "https://github.com/mokeyish/zerotier-edge"
license = "GPL-v3.0"
readme = "README.md"
[features]
default = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cfg-if = "1.0"
dirs = "5.0"
faccess = "0.2.4"
axum = { version = "0.7" }
async-trait = "0.1"
futures = "0.3"
reqwest = { version = "0.12", default-features=false, features = ["json"] }
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.32", features = ["macros", "rt-multi-thread"]}
tracing = "0.1"
tracing-subscriber = "0.3"
rust-embed = "8.0"
mime_guess = "2.0"
clap = { version = "4.0", features = ["derive"] }
[profile.release]
# see: https://github.com/johnthagen/min-sized-rust
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true