forked from reverie-rs/reverie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 773 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
[package]
name = "reverie"
version = "0.1.0"
authors = ["Baojun Wang <wangbj@gmail.com>"]
edition = "2018"
[workspace]
members= [".", "syscalls", "tools_helper", "preloader", "examples/none", "examples/echo", "examples/counter", "examples/det" ]
default-members = [".", "syscalls", "preloader", "tools_helper" ]
[lib]
name = "reverie"
path = "src/lib.rs"
[[bin]]
name = "reverie"
path = "src/main.rs"
[dependencies]
libc = { version = "0.2", default-features = false }
syscalls = { path = "syscalls" }
nix = "0.13"
goblin = "0.0"
procfs = "0.5"
clap = "2.32"
lazy_static = "1.3"
colored = "1.7"
chrono = "0.4"
log = "0.4"
fern = "0.5"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
[build-dependencies]
cc = "1.0"
sysnum = { path = "sysnum" }