crosvm/libcrosvm_control/Cargo.toml
Kevin Hamacher 6fc5f20fd9 Add FFI library providing control socket access
This allows other languages to communicate directly with the control
socket without having to invoke `crosvm`

BUG=None
TEST=Ran ./run_tests

Change-Id: Icbf5905c41643b080bae3613b73a032467db1c4c
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2772798
Tested-by: kokoro <noreply+kokoro@google.com>
Commit-Queue: Kevin Hamacher <hamacher@google.com>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
2021-04-08 00:20:01 +00:00

14 lines
241 B
TOML

[package]
name = "libcrosvm_control"
version = "0.1.0"
authors = ["The Chromium OS Authors"]
edition = "2018"
[lib]
crate-type = ["cdylib"]
[dependencies]
base = { path = "../base" }
vm_control = { path = "../vm_control" }
libc = "0.2.65"