aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 39a7ac36f2c506d63d3489e7521a04a2f488d047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "vhost-user-i2c"
version = "0.1.0"
authors = ["Viresh Kumar <viresh.kumar@linaro.org>"]
edition = "2018"
description = "Virtio I2C backend daemon"
readme = "README.md"
license = "Apache-2.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
libc = ">=0.2.39"
clap = { version = "2.33.3",  features = ["yaml"] }
epoll = "4.3"
log = ">=0.4.6"
vm-memory = ">=0.3.0"
virtio-bindings = ">=0.1"

# currently these are based of checkouts
vhost = { git = "https://github.com/rust-vmm/vhost" }
vhost-user-backend = { git = "https://github.com/rust-vmm/vhost-user-backend" }