-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (31 loc) · 943 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
35
36
37
38
[package]
name = "pkrusafe-bench"
version = "0.1.0"
authors = ["Paul Kirth <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libuntrusted = { path = "libuntrusted" }
libtrusted = { path = "libtrusted" }
clap = "2.33.3"
csv = { version = "0.15.0" }
serde = { version = "1.0.126", features = ["derive"] }
rustc-serialize = "0.3.24"
mpk_protector = { git = "https://github.com/securesystemslab/pkru-safe-mpk-protector.git" }
pkmallocator = { git = "https://github.com/securesystemslab/pkru-safe-pkmallocator.git" }
pkalloc = { git = "https://github.com/securesystemslab/pkru-safe-pkalloc.git" }
[dev-dependencies]
criterion = "0.3.4"
[[bench]]
name = "my_benchmark"
harness = false
[profile.dev]
opt-level =1
lto = true
incremental = false
codegen-units = 1
[profile.release]
opt-level = 1
lto = true
incremental = false
codegen-units = 1