-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 851 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (29 loc) · 851 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
[package]
name = "moneta_fn"
version = "0.2.11"
edition = "2021"
description = "A set of macros to function profiling"
repository = "https://github.com/Defmc/moneta"
keywords = ["macro", "logging", "profiling"]
categories = ["accessibility", "caching", "development-tools"]
license = "MIT"
[dependencies]
hashbrown = "0.14.0"
once_cell = "1.18.0"
moneta_fn_macros = { path = "src/macros", version = "0.2.11", default-features = false }
[dev-dependencies]
bencher = "0.1.5"
[[bench]]
name = "benches"
harness = false
path = "src/benches.rs"
[features]
default = ["trace", "count", "time", "cache"]
count = ["moneta_fn_macros/count"]
trace = ["moneta_fn_macros/trace"]
time = ["moneta_fn_macros/time"]
visible = ["moneta_fn_macros/visible"]
cache = ["moneta_fn_macros/cache"]
depth = ['moneta_fn_macros/depth']
[workspace]
members = ["src/macros"]