-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 746 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 746 Bytes
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
[package]
name = "libcfd"
version = "0.1.1"
edition = "2021"
description = "A port of cloudflared (Cloudflare Tunnel Client) to Rust."
license = "Apache-2.0"
repository = "https://github.com/apersomany/libcfd"
[build_dependencies]
capnpc = "0.19"
[dependencies]
anyhow = "1.0"
async-tungstenite = "0.25"
base64 = "0.21"
capnp = "0.19"
capnp-futures = "0.19"
capnp-rpc = "0.19"
rustls = "0.21"
sha1 = "0.10"
uuid = "1.7"
futures = "0.3"
serde_json = "1.0"
[dependencies.quinn]
version = "0.10"
features = ["futures-io"]
[dependencies.reqwest]
version = "0.11"
default-features = false
features = ["json", "rustls-tls"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.tokio]
version = "1.36"
features = ["rt", "net"]