-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
41 lines (37 loc) · 1.08 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
[package]
name = "await-tree"
version = "0.2.2"
edition = "2021"
description = "Generate accurate and informative tree dumps of asynchronous tasks."
repository = "https://github.com/risingwavelabs/await-tree"
keywords = ["async", "tokio", "backtrace", "actor"]
categories = ["development-tools::debugging"]
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
coarsetime = "0.1"
derive_builder = "0.20"
flexstr = "0.9"
indextree = "4"
itertools = "0.12"
parking_lot = "0.12"
pin-project = "1"
tokio = { version = "1", features = ["rt"] }
tracing = "0.1"
weak-table = "0.3.2"
[dev-dependencies]
criterion = { version = "0.5", features = ["async", "async_tokio"] }
futures = { version = "0.3", default-features = false, features = ["alloc"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "macros"] }
[[bench]]
name = "basic"
harness = false
[profile.bench]
opt-level = 3
debug = false
codegen-units = 1
lto = 'fat'
incremental = false
debug-assertions = false
overflow-checks = false
rpath = false