-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
46 lines (41 loc) · 1.25 KB
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
[package]
name = "virtiofsd"
description = "A virtio-fs vhost-user device daemon"
version = "1.13.2"
authors = ["The Virtiofs Project Developers"]
edition = "2018"
homepage = "https://virtio-fs.gitlab.io/"
repository = "https://gitlab.com/virtio-fs/virtiofsd"
license = "Apache-2.0 AND BSD-3-Clause"
readme = "README.md"
exclude = [".gitlab-ci.yml"]
[features]
default = ["seccomp"]
# Expose seccomp bindings from the library.
seccomp = ["dep:libseccomp-sys"]
# Enabling Xen support will _disable_ QEMU/KVM support!
xen = ["vhost-user-backend/xen", "vhost/xen", "vm-memory/xen"]
[[bin]]
name = "virtiofsd"
required-features = ["seccomp"]
[dependencies]
bitflags = "1.2"
btree-range-map = "0.7"
capng = "0.2.2"
env_logger = "0.8.4"
futures = { version = "0.3", features = ["thread-pool"] }
libc = "0.2.155"
log = "0.4"
libseccomp-sys = { version = "0.2", optional = true }
clap = { version = "4", features = ["derive"] }
postcard = { version = "1.0", features = ["use-std"] }
serde = { version = "1.0", features = ["derive"] }
vhost-user-backend = "0.17.0"
vhost = "0.13.0"
virtio-bindings = "0.2.1"
vm-memory = { version = "0.16.0", features = ["backend-mmap", "backend-atomic"] }
virtio-queue = "0.14.0"
vmm-sys-util = "0.12.1"
syslog = "6.1"
[profile.release]
lto = true