-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 819 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 819 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
[package]
name = "micrometer"
description = "Profiling for fast, high frequency events in multithreaded applications with low overhead"
version = "0.2.7"
edition = "2021"
authors = ["Luca De Martini <luca.de.martini@protonmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/imDema/micrometer-rs"
[features]
default = ["instant"]
enable = []
instant = []
perforation = []
perforation-128 = ["perforation"]
perforation-1k = ["perforation"]
perforation-16k = ["perforation"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
parking_lot = "0.12.1"
once_cell = "1.18.0"
thread_local = "1.1.7"
[dev-dependencies]
tempfile = "3.6.0"
[package.metadata.docs.rs]
# Features to pass to Cargo (default: [])
features = ["enable", "perforation-1k"]