-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (27 loc) · 838 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
[package]
name = "network_view"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["internal-certificate", "internal-private-key"]
internal-certificate = []
internal-private-key = []
[dependencies]
pnet = { version = "0.34", features = ["serde"] }
http-body-util = "0.1"
hyper = { version = "1", features = ["full"] }
hyper-util = { git = "https://github.com/hyperium/hyper-util.git" }
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = "0.20"
tokio-native-tls = "0.3"
async-compat = "0.2"
futures = "0.3"
serde_json = "1"
serde = { version = "1", features = ["derive"] }
flate2 = "1"
mime_guess = "2"
argh = "0.1"
bytes = "1"
[package.metadata.cross.target.mips-unknown-linux-musl]
dockerfile = "./docker/mips"