forked from checkpoint-restore/criu-image-streamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 918 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
[package]
name = "image-streamer"
version = "1.0.0"
authors = ["Nicolas Viennot <[email protected]>", "Liana Koleva <[email protected]>"]
description = "Capture and extract CRIU + Cedana images via UNIX pipes"
edition = "2021"
license = "Apache-2.0"
[dependencies]
structopt = { version = "0.3", default-features = false }
anyhow = "1.0"
slab = "0.4"
libc = "0.2"
prost = "0.11"
tonic = "0.9"
bytes = "1.1"
nix = "0.17"
lazy_static = "1.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lz4_flex = "0.11.3"
[build-dependencies]
prost-build = "0.11" # to generate protobuf wrappers
tonic-build = { version = "^0.9", features = ["prost"] }
[dev-dependencies]
procinfo = "0.4" # to measure memory usage
crossbeam-utils = "0.7" # for scoped threads
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
strip = true
[[bin]]
name = "cedana-image-streamer"
path = "src/comm.rs"