Skip to content

Commit

Permalink
deps: Bump dependent crate versions
Browse files Browse the repository at this point in the history
This pull request is mainly for updating vm-memory and vmm-sys-util.

The affacted crates include:

- vm-memory: from 0.9.0 to 0.10.0;
- vmm-sys-util: from 0.10.0 to 0.11.0;
- vhost: from 0.5.0 to 0.6.0;
- virtio-queue: from 0.6.0 to 0.7.0
- fuse-backend-rs: from 0.10.4 to 0.10.5
- vhost-user-backend: from 0.7.0 to 0.8.0

Signed-off-by: Xuewei Niu <niuxuewei.nxw@antgroup.com>
  • Loading branch information
justxuewei committed Aug 3, 2023
1 parent a295c54 commit 32a8b59
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 31 deletions.
25 changes: 12 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,19 @@ nydus-service = { version = "0.3.0", path = "service", features = ["block-device
nydus-storage = { version = "0.6.3", path = "storage", features = ["prefetch-rate-limit"] }
nydus-utils = { version = "0.4.2", path = "utils" }

vhost = { version = "0.5.0", features = ["vhost-user-slave"], optional = true }
vhost-user-backend = { version = "0.7.0", optional = true }
vhost = { version = "0.6.0", features = ["vhost-user-slave"], optional = true }
vhost-user-backend = { version = "0.8.0", optional = true }
virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"], optional = true }
virtio-queue = { version = "0.6.0", optional = true }
vm-memory = { version = "0.9.0", features = ["backend-mmap"], optional = true }
vmm-sys-util = { version = "0.10.0", optional = true }
virtio-queue = { version = "0.7.0", optional = true }
vm-memory = { version = "0.10.0", features = ["backend-mmap"], optional = true }
vmm-sys-util = { version = "0.11.0", optional = true }

[build-dependencies]
time = { version = "0.3.14", features = ["formatting"] }

[dev-dependencies]
xattr = "0.2.3"
vmm-sys-util = "0.10.0"
vmm-sys-util = "0.11.0"

[features]
default = [
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ serde = { version = "1.0.110", features = ["rc", "serde_derive"] }
url = { version = "2.1.1", optional = true }

[dev-dependencies]
vmm-sys-util = { version = "0.10" }
vmm-sys-util = { version = "0.11" }

[features]
error-backtrace = ["backtrace"]
Expand Down
2 changes: 1 addition & 1 deletion builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ serde = { version = "1.0.110", features = ["serde_derive", "rc"] }
serde_json = "1.0.53"
sha2 = "0.10.2"
tar = "0.4.38"
vmm-sys-util = "0.10.0"
vmm-sys-util = "0.11.0"
xattr = "0.2.3"

nydus-api = { version = "0.3", path = "../api" }
Expand Down
4 changes: 2 additions & 2 deletions rafs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ log = "0.4"
nix = "0.24"
serde = { version = "1.0.110", features = ["serde_derive", "rc"] }
serde_json = "1.0.53"
vm-memory = "0.9"
vm-memory = "0.10"
fuse-backend-rs = "^0.10.3"

nydus-api = { version = "0.3", path = "../api" }
nydus-storage = { version = "0.6", path = "../storage", features = ["backend-localfs"] }
nydus-utils = { version = "0.4", path = "../utils" }

[dev-dependencies]
vmm-sys-util = "0.10"
vmm-sys-util = "0.11"
assert_matches = "1.5.0"

[features]
Expand Down
10 changes: 5 additions & 5 deletions service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,17 @@ nydus-rafs = { version = "0.3.1", path = "../rafs" }
nydus-storage = { version = "0.6.3", path = "../storage" }
nydus-utils = { version = "0.4.2", path = "../utils" }

vhost = { version = "0.5.0", features = ["vhost-user-slave"], optional = true }
vhost-user-backend = { version = "0.7.0", optional = true }
vhost = { version = "0.6.0", features = ["vhost-user-slave"], optional = true }
vhost-user-backend = { version = "0.8.0", optional = true }
virtio-bindings = { version = "0.1", features = ["virtio-v5_0_0"], optional = true }
virtio-queue = { version = "0.6.0", optional = true }
vm-memory = { version = "0.9.0", features = ["backend-mmap"], optional = true }
virtio-queue = { version = "0.7.0", optional = true }
vm-memory = { version = "0.10.0", features = ["backend-mmap"], optional = true }

[target.'cfg(target_os = "linux")'.dependencies]
tokio-uring = "0.4"

[dev-dependencies]
vmm-sys-util = "0.10.0"
vmm-sys-util = "0.11.0"

[features]
default = ["fuse-backend-rs/fusedev"]
Expand Down
4 changes: 2 additions & 2 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ tar = "0.4.38"
time = { version = "0.3.14", features = ["formatting"], optional = true }
tokio = { version = "1.19.0", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }
url = { version = "2.1.1", optional = true }
vm-memory = "0.9"
vm-memory = "0.10"
fuse-backend-rs = "^0.10.3"
gpt = { version = "3.0.0", optional = true }

nydus-api = { version = "0.3", path = "../api" }
nydus-utils = { version = "0.4", path = "../utils", features = ["encryption", "zran"] }

[dev-dependencies]
vmm-sys-util = "0.10"
vmm-sys-util = "0.11"
tar = "0.4.38"
regex = "1.7.0"

Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ libz-sys = { version = "1.1.8", features = ["zlib-ng"], default-features = false
flate2 = { version = "1.0.17", features = ["zlib-ng-compat"], default-features = false }

[dev-dependencies]
vmm-sys-util = "0.10.0"
vmm-sys-util = "0.11.0"
tar = "0.4.38"

[features]
Expand Down

0 comments on commit 32a8b59

Please sign in to comment.