-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
34 lines (29 loc) · 864 Bytes
/
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
[package]
name = "tsc-trace"
version = "0.7.1"
edition = "2021"
license = "MIT"
description = "low overhead tracing of rust code using time stamp counter (x86 rdtsc)"
homepage = "https://github.com/koeninger/tsc-trace"
repository = "https://github.com/koeninger/tsc-trace"
readme = "README.md"
keywords = ["tracing", "profiling", "debugging"]
categories = ["development-tools::debugging", "development-tools::profiling"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
capacity_1_million = []
capacity_8_million = []
capacity_16_million = []
capacity_32_million = []
capacity_64_million = []
off = []
lfence = []
const_array = []
[dependencies]
bytemuck = "1.17.1"
[dev-dependencies]
criterion = { version = "0.4", features = ["html_reports"] }
[[bench]]
name = "bench"
harness = false