pci: use vfio-bindings from crates.io

This fixes `cargo vendor` throwing an error

```
$ cargo vendor
error: failed to sync

Caused by:
  found duplicate version of package `vfio-bindings v0.2.0` vendored from two sources:

	source 1: https://github.com/rust-vmm/vfio-bindings#f08cbcbf
	source 2: registry `https://github.com/rust-lang/crates.io-index`
```

Both sources are indeed same, the conflict is only cause by the
different URLs.

Signed-off-by: Anatol Belski <ab@php.net>
This commit is contained in:
Anatol Belski
2020-08-05 13:53:09 +02:00
committed by Rob Bradford
parent 0f1ab38ded
commit 4f33ea89cf
2 changed files with 5 additions and 10 deletions

View File

@@ -22,5 +22,5 @@ vm-memory = "0.2.1"
vm-migration = { path = "../vm-migration" }
[dependencies.vfio-bindings]
git = "https://github.com/rust-vmm/vfio-bindings"
version = "0.2.0"
features = ["fam-wrappers"]