-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (37 loc) · 925 Bytes
/
Cargo.toml
File metadata and controls
46 lines (37 loc) · 925 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
41
42
43
44
45
46
[package]
name = "msg"
description.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
[dependencies]
msg-socket.workspace = true
msg-transport.workspace = true
msg-wire.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
[dev-dependencies]
bytes.workspace = true
tracing-subscriber = "0.3"
divan = "0.1"
futures.workspace = true
tracing.workspace = true
rand.workspace = true
criterion.workspace = true
pprof.workspace = true
[features]
default = []
quic = ["msg-transport/quic"]
# Add jemalloc for extra perf on Linux systems.
[target.'cfg(all(not(windows), not(target_env = "musl")))'.dependencies]
jemallocator = { version = "0.5.0", features = ["profiling"] }
[[bench]]
name = "reqrep"
harness = false
[[bench]]
name = "pubsub"
harness = false