forked from PLSysSec/wave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (35 loc) · 1021 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
39
40
41
42
43
44
[package]
name = "wave"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "wave"
crate_type = ["dylib", "rlib"]
[dependencies]
system-call = { git = "https://github.com/emlaufer/system-call.rs.git", branch = "master" }
libc = "0.2"
trace = "*"
#extra_args = "=0.1.69"
wave-macros = { path = "wave-macros"}
owned-components = { path = "owned-components"}
paste = "1.0" # used in syscall function generation
flux-rs = { git = "https://github.com/flux-rs/flux.git" }
# Used for debugging
log = "0.4.14"
env_logger = "0.8.0"
quickcheck="1.0.3"
quickcheck_macros = "1.0.0"
# Used for computing stats on benchmarks
statistical = "1.0.0"
#[dev-dependencies]
regex = "1"
[target.'cfg(target_os = "macos")'.dependencies]
mach2 = "0.4.0"
security-framework-sys = "2.4.2"
[features]
verify = ["wave-macros/enable"] # feature for when we're verifying
time_syscalls = []
time_hostcalls = []
[package.metadata.flux]
enabled = true