forked from TimeToogo/tunshell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 1.04 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
[package]
name = "tunshell-server"
version = "0.1.0"
authors = ["Elliot Levin <elliotlevin@hotmail.com>"]
edition = "2018"
[dependencies]
tunshell-shared = { path = "../tunshell-shared" }
anyhow = { workspace = true }
chrono = "0.4.13"
env_logger = { workspace = true }
futures = { workspace = true }
log = { workspace = true }
rand = { workspace = true }
rustls = { version = "0.21.12", features = ["dangerous_configuration"] }
rustls-pemfile = "1"
rusqlite = { version = "0.23.1", features = ["bundled"] }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "net"] }
tokio-rustls = { workspace = true }
tokio-util = { workspace = true }
uuid = { version = "0.8.1", features = ["v4"] }
warp = { version = "0.2.3", features = ["tls"] }
webpki = { workspace = true }
webpki-roots = { workspace = true }
[dev-dependencies]
async-tls = "0.13.0"
async-tungstenite = { version = "0.28.0", features = [
"async-tls",
"tokio-runtime",
] }
lazy_static = { workspace = true }
tungstenite = "0.24.0"