-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (48 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
59 lines (48 loc) · 1.26 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "rocket-chip-driver"
edition = "2024"
[lib]
crate-type = ["cdylib"]
[workspace]
resolver = "2"
members = ["patronus", "tools/*"]
exclude = ["baa-clif-gen"]
[workspace.package]
edition = "2024"
authors = ["Kevin Laeufer <laeufer@berkeley.edu>", "Zihan Li <zl2225@cornell.edu>"]
repository = "https://github.com/cucapra/patronus"
readme = "Readme.md"
license = "BSD-3-Clause"
[workspace.dependencies]
rustc-hash = "2.x"
baa = { version = "0.17.1", features = ["rand1"] }
regex = "1.11.1"
boolean_expression = "0.4.4"
clap = { version = "4.x", features = ["derive"] }
patronus = { path = "patronus" }
thiserror = "2.0.6"
env_logger = "0.11.8"
[dependencies]
patronus = { workspace = true, features = ["aot-clif"] }
baa.workspace = true
ouroboros = "0.18.5"
paste = "1.0.15"
cfg-if = "1.0.1"
[features]
default = ["interpreter"]
interpreter = []
trace = ["patronus/trace"]
jit = []
[build-dependencies]
cbindgen = "0.29.0"
convert_case = "0.8.0"
# speed up execution of tests using insta
[profile.dev.package]
insta.opt-level = 3
# include debug information for profiling
[profile.release]
debug = true
# for samply: https://github.com/mstange/samply/?tab=readme-ov-file#turn-on-debug-info-for-full-stacks
[profile.profiling]
inherits = "release"
debug = true