forked from google/rrg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 929 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
[package]
name = "rrg"
description = "Rust rewrite of GRR."
version = "0.1.0"
authors = ["Łukasz Hanuszczak <[email protected]>"]
edition = "2018"
[dependencies]
fleetspeak = { version = "0.1.2" }
humantime = { version = "2.0.0" }
log = { version = "0.4.8" }
netstat2 = { version = "0.8.1" }
prost = { version = "0.6.1" }
prost-types = { version = "0.6.1" }
rrg-proto = { path = "proto/" }
simplelog = { version = "0.7.6" }
structopt = { version = "0.3.12" }
flate2 = { version = "1.0.14" }
byteorder = { version = "1.3.4" }
sysinfo = { version = "0.14.1" }
[dev-dependencies]
rand = { version = "0.7.3" }
tempfile = { version = "3.1.0" }
[target.'cfg(target_family = "unix")'.dependencies]
pnet = { version = "0.26.0" }
[target.'cfg(target_os = "linux")'.dependencies]
proc-mounts = { version = "0.2.4" }
[target.'cfg(target_os = "linux")'.dev-dependencies]
fuse = { version = "0.3.1" }
users = { version = "0.10.0" }