-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 939 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 939 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
[package]
name = "smoke"
version = "0.3.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
postcard = "1"
serde = { version = "1", features = ["derive"] }
tokio-rustls = "0.23"
tokio = { version = "1", features = ["rt", "net", "macros", "io-util", "sync", "time"]}
pin-project-lite = "0.2"
vlink = { version = "0.6", default-features = false }
tracing = "0.1"
[dev-dependencies]
tokio-test = "0.4.2"
criterion = { version = "0.3", features = ["html_reports", "async_tokio"] }
iai = "0.1"
vlink = { version = "0.6" }
test-log = { version = "0.2", features = [ "trace" ], default-features = false }
tracing-subscriber = { version = "0.3", features = [ "fmt", "env-filter" ] }
[patch.crates-io]
tokio-test = { path = "./tokio-test" }
[[bench]]
name = "criterion"
harness = false
[[bench]]
name = "iai"
harness = false
[features]
default = []
client = []