forked from googleforgames/quilkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
94 lines (85 loc) · 2.92 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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
[workspace]
members = [".", "./macros"]
[package]
name = "quilkin"
version = "0.4.0-dev"
authors = ["Mark Mandel <[email protected]>", "Ifeanyi Ubah <[email protected]>"]
license = "Apache-2.0"
description = "Quilkin is a non-transparent UDP proxy specifically designed for use with large scale multiplayer dedicated game server deployments, to ensure security, access control, telemetry data, metrics and more."
homepage = "https://github.com/googleforgames/quilkin"
repository = "https://github.com/googleforgames/quilkin"
readme = "README.md"
keywords = ["proxy", "game-server", "game-development", "networking", "multiplayer"]
categories = ["game-development", "network-programming"]
edition = "2021"
exclude = ["docs", "build", "examples", "image"]
[[bench]]
name = "throughput"
harness = false
test = true
[dependencies]
# Local
quilkin-macros = { version = "0.4.0-dev", path = "./macros" }
# Crates.io
arc-swap = "1.5.0"
base64 = "0.13.0"
base64-serde = "0.6.1"
bytes = { version = "1.1.0", features = ["serde"] }
clap = { version = "3.1.2", features = ["cargo", "derive", "env"] }
dashmap = "4.0.2"
either = "1.6.1"
eyre = "0.6.7"
futures = "0.3.21"
hyper = "0.14.17"
ipnetwork = "0.18.0"
num_cpus = "1.13.0"
once_cell = "1.9.0"
parking_lot = "0.12"
prometheus = { version = "0.13.0", default-features = false }
prost = "=0.9.0"
prost-types = "=0.9.0"
rand = "0.8.5"
regex = "1.5.4"
schemars = { version = "0.8.8", features = ["bytes"] }
serde = { version = "1.0.130", features = ["derive", "rc"] }
serde_json = "1.0.79"
serde_regex = "1.1.0"
serde_yaml = "0.8.21"
snap = "1.0.5"
stable-eyre = "0.2.2"
thiserror = "1.0.30"
tokio = { version = "1.17", features = ["rt-multi-thread", "signal", "test-util", "parking_lot"] }
tokio-stream = "0.1.8"
tonic = "0.6.1"
tracing = {version = "0.1.31" }
tracing-subscriber = { version = "0.3.9", features = ["json"] }
tryhard = "0.4.0"
uuid = { version = "0.8.2", default-features = false, features = ["v4"] }
[target.'cfg(target_os = "linux")'.dependencies]
sys-info = "0.9.0"
[dev-dependencies]
regex = "1.5.4"
criterion = { version = "0.3.5", features = ["html_reports"] }
once_cell = "1.8.0"
tracing-test = "0.2"
[build-dependencies]
tonic-build = { version = "0.6.0", default_features = false, features = ["transport", "prost"] }
# Locked to 0.8 to match `tonic-build`'s `prost-build`.
prost-build = "=0.9.0"
[features]
instrument = []