From b91f074ae5613fce12dcfc27f5fd8db82235e839 Mon Sep 17 00:00:00 2001 From: Viresh Kumar Date: Wed, 1 Sep 2021 12:50:50 +0530 Subject: [PATCH] i2c: Fix dependency to a working commit of backend To avoid breaking the crate with a newer version of the vhost-user-backend crate, fix the dependency to a known good version of the crate. Signed-off-by: Viresh Kumar --- src/i2c/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i2c/Cargo.toml b/src/i2c/Cargo.toml index d308a1a..10cf581 100644 --- a/src/i2c/Cargo.toml +++ b/src/i2c/Cargo.toml @@ -17,7 +17,7 @@ epoll = "4.3" libc = ">=0.2.95" log = ">=0.4.6" vhost = { version = "0.1", features = ["vhost-user-slave"] } -vhost-user-backend = { git = "https://github.com/rust-vmm/vhost-user-backend" } +vhost-user-backend = { git = "https://github.com/rust-vmm/vhost-user-backend", rev = "f0af5f7fc22a345e050123dc048c0639965fe652" } virtio-bindings = ">=0.1" vm-memory = "0.6" vmm-sys-util = ">=0.8.0"