-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 931 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "hash-dude"
version = "0.1.0"
edition = "2021"
default-run = "server"
license = "Apache-2.0"
authors = ["ityt <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "alphabet"
path = "src/alphabet.rs"
[[bin]]
name = "slave"
path = "src/slave.rs"
[[bin]]
name = "server"
path = "src/main.rs"
[[bin]]
name = "monitor"
path = "src/monitor.rs"
[dependencies]
axum = { version = "0.6", features = ["ws", "headers"] }
futures = "0.3"
tokio = { version = "1", features = ["full"] }
headers = "0.3"
tracing = "0.1"
tracing-subscriber = "0.3"
tokio-tungstenite = "0.18.0"
url = "2"
futures-util = "0.3"
md-5 = { version = "0.10", features = ["asm"] }
hex = "0.4"
clap = { version = "4", features = ["derive"] }
mime = "0.3"
[target.'cfg(target_env = "gnu")'.dependencies]
trust-dns-resolver = "0.22"
[profile.release]
lto = true