-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
32 lines (29 loc) · 1.01 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
[package]
name = "locktick"
version = "0.6.0"
edition = "2021"
rust-version = "1.80"
authors = ["ljedrz <ljedrz@gmail.com>"]
description = "Automated lock accounting & profiling"
license = "CC0-1.0"
repository = "https://github.com/ljedrz/locktick"
documentation = "https://docs.rs/locktick"
readme = "README.md"
categories = ["concurrency", "development-tools"]
keywords = ["deadlock", "lock", "profiling", "utility"]
[features]
default = ["std"]
parking_lot = ["dep:parking_lot"]
std = []
tokio = ["dep:tokio"]
tracing = ["dep:tracing"]
test = []
[dependencies]
simple_moving_average = "1"
parking_lot = { version = "0.12", optional = true }
tokio = { version = "1", features = ["sync"], optional = true }
tracing = { version = "0.1", default-features = false, features = ["std"], optional = true }
[dev-dependencies]
locktick = { path = ".", default-features = false, features = ["test"] }
tokio = { version = "1", features = ["macros", "rt", "time"] }
serial_test = { version = "3", default-features = false, features = ["async"] }