-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (60 loc) · 1.7 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (60 loc) · 1.7 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]
members = [".", "await-tree-attributes"]
[package]
name = "await-tree"
version = "0.3.2-alpha.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
[features]
serde = ["dep:serde", "flexstr/serde"]
tokio = ["dep:tokio"]
attributes = ["dep:await-tree-attributes"]
[dependencies]
await-tree-attributes = { path = "await-tree-attributes", version = "0.1.0-alpha.2", optional = true }
coarsetime = "0.1"
derive_builder = "0.20"
easy-ext = "1"
flexstr = "0.9"
indextree = "4"
itertools = "0.12"
parking_lot = "0.12"
pin-project = "1"
serde = { version = "1", features = ["derive"], optional = true }
task-local = "0.1"
tokio = { version = "1", features = ["rt"], optional = true }
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"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
[[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
[[example]]
name = "serde"
required-features = ["serde"]
[[example]]
name = "spawn"
required-features = ["tokio"]
[[example]]
name = "global"
required-features = ["tokio"]
[[example]]
name = "instrument"
required-features = ["tokio", "attributes"]