-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
51 lines (45 loc) · 1.21 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "yapall"
version = "0.1.2"
edition = "2021"
license = "BSD-3-Clause"
description = "Yet Another Pointer Analysis for LLVM"
# https://nnethercote.github.io/perf-book/build-configuration.html
[profile.release]
lto = "thin"
debug = true # for dhat-heap
[features]
default = ["precompute", "rule"]
dhat-heap = ["dep:dhat"]
count = [] # print counts of tuples generated to stderr
par = []
precompute = []
relation = [] # profile at the relation level
rule = [] # profile at the rule level
# https://github.com/mstange/samply#turn-on-debug-info-for-full-stacks
[profile.profiling]
inherits = "release"
debug = true
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "bench"
harness = false
[dependencies]
ascent = "0.5"
anyhow = "1"
clap = { version = "4", features = ["derive"] }
dashmap = "6"
dhat = { version = "0.3", optional = true }
either = "1"
# TODO: https://github.com/cdisselkoen/llvm-ir/pull/34
llvm-ir = { version = "0.9", features = ["llvm-14"] }
regex = "1"
rustc-hash = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tracing = "0.1"
tracing-flame = "0.2"
tracing-subscriber = "0.3"
triomphe = { version = "0.1", default-features = false, features = ["std"] }