-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 900 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
28
29
[package]
name = "methd"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0 OR MPL-2.0"
readme = "README.md"
repository = "https://github.com/menhera-org/methd"
description = "Simple daemon that enables a wide-area Ethernet deployment."
homepage = "https://github.com/menhera-org/methd"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes-gcm = "0.10.3"
anyhow = "1.0.75"
base64 = "0.21.5"
clap = { version = "4.4.7", features = ["derive"] }
ed25519-dalek = { version = "2.0.0", features = ["rand_core"] }
env_logger = "0.10.0"
glob = "0.3.1"
log = "0.4.20"
rand = "0.8.5"
serde = { version = "1.0.192", features = ["derive"] }
tokio = { version = "1.33.0", features = ["full"] }
tokio-tun = "0.11.2"
toml = "0.8.8"
uuid = { version = "1.5.0", features = ["v4"] }
x25519-dalek = { version = "2.0.0", features = ["getrandom"] }