-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (60 loc) · 2.17 KB
/
Copy pathCargo.toml
File metadata and controls
71 lines (60 loc) · 2.17 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
61
62
63
64
65
66
67
68
69
70
[workspace]
resolver = "2"
members = [
"benchmarks",
"example-messagepack",
"example-pool",
"example-proto",
"example-proto-stream",
"example-proto-tls",
"example-telnet",
"level-runtime",
"protosocket-connection",
"protosocket-messagepack",
"protosocket-prost",
"protosocket-rpc",
"protosocket-server",
"spillway",
]
[workspace.package]
version = "1.1.0"
authors = ["kvc0"]
repository = "https://github.com/kvc0/protosocket"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["tcp", "protobuf", "service", "performance"]
categories = ["web-programming"]
[workspace.dependencies]
level-runtime = { path = "level-runtime", version = "1.0.0" }
protosocket = { path = "protosocket-connection", version = "1.0.0" }
protosocket-messagepack = { path = "protosocket-messagepack" }
protosocket-rpc = { path = "protosocket-rpc" }
protosocket-server = { path = "protosocket-server" }
protosocket-prost = { path = "protosocket-prost" }
spillway = { path = "spillway", version = "1.0.0" }
ahash = { version = "0" }
bytes = { version = "1.6" }
criterion = { version = "0" }
env_logger = { version = "0.11" }
futures = { version = "0.3" }
log = { version = "0.4" }
prost = { version = "0.14" }
rand = { version = "0.9" }
rcgen = { version = "0.14" }
rmp = { version = "0.8" }
rmp-serde = { version = "1.3" }
rustls-pemfile = { version = "2.2" }
rustls-pki-types = { version = "1.12" }
serde = { version = "1.0" }
socket2 = { version = "0.6" }
thiserror = { version = "2.0" }
tokio = { version = "1.39", features = ["net", "rt"] }
tokio-rustls = { version = "0.26" }
tokio-test = { version = "0.4" }
tokio-util = { version = "0.7" }
tracing = { version = "0.1" }
webpki-roots = { version = "1" }
[profile.release-with-debug]
inherits = "release"
debug = true