forked from edera-dev/krata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (43 loc) · 904 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
45
46
47
48
49
[workspace]
members = [
"crates/xen/xencall",
"crates/xen/xenclient",
"crates/xen/xenevtchn",
"crates/xen/xengnt",
"crates/xen/xenplatform",
"crates/xen/xenstore",
]
resolver = "2"
[workspace.package]
version = "0.0.23"
homepage = "https://krata.dev"
license = "GPL-2.0-or-later"
repository = "https://github.com/edera-dev/krata"
[workspace.dependencies]
async-trait = "0.1.83"
byteorder = "1"
c2rust-bitfields = "0.18.0"
elf = "0.7.4"
env_logger = "0.11.5"
flate2 = "1.0"
indexmap = "2.6.0"
libc = "0.2"
log = "0.4.22"
memchr = "2"
nix = "0.29.0"
regex = "1.11.0"
slice-copy = "0.3.0"
thiserror = "1.0"
xz2 = "0.1"
[workspace.dependencies.serde]
version = "1.0.209"
features = ["derive"]
[workspace.dependencies.tokio]
version = "1.40.0"
features = ["full"]
[workspace.dependencies.uuid]
version = "1.10.0"
features = ["v4"]
[profile.release]
lto = "fat"
strip = "symbols"