-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (44 loc) · 1.34 KB
/
Cargo.toml
File metadata and controls
60 lines (44 loc) · 1.34 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "pocket-relay-client-shared"
version = "0.3.0"
edition = "2021"
description = "Shared logic for pocket relay client variants"
authors = ["Jacobtread <jacobtread@gmail.com>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/PocketRelay/PocketRelayClientShared"
[dependencies]
# Shared UDP tunnel protocol
pocket-relay-udp-tunnel = { version = "0" }
# Logging
log = "0.4"
# HTTP client (native-tls is required for client auth)
reqwest = { version = "0.11", default-features = false, features = [
"json",
"native-tls",
] }
# Serialization
serde = { version = "1", features = ["derive"] }
# SSLv3 implementation for the game communications
blaze-ssl-async = "0.4"
# Library for obtaining the local IP address of the device
local-ip-address = "0.5"
# Semantic versioning
semver = { version = "1.0", features = ["serde"] }
# Low level HTTP access
hyper = { version = "0.14", features = ["server", "http1", "tcp", "runtime"] }
# URL parsing and manipulation
url = "2.4.1"
# TDF reading and writing
tdf = "0.1"
# Byte buffers
bytes = "1.4.0"
# Tokio async runtime and utilities
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
# Utilities for working with futures
futures = "0.3"
# Error derive macros
thiserror = "1"
# Locking primitives
parking_lot = "0.12.1"