Skip to content

Commit 590f5b6

Browse files
committed
use caret requirements for dependencies
This way the deps that are below 1.0 will only be updated at the patch level, and the ones >= 1.0, at the patch and minor levels. Fixes: rust-vmm#199. Also updated vmm-sys-util to latest version available. Signed-off-by: Laura Loghin <[email protected]>
1 parent 3ca7388 commit 590f5b6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ backend-mmap = []
1818
backend-atomic = ["arc-swap"]
1919

2020
[dependencies]
21-
libc = ">=0.2.39"
22-
arc-swap = { version = ">=1.0.0", optional = true }
21+
libc = "0.2.39"
22+
arc-swap = { version = "1.0.0", optional = true }
2323

2424
[target.'cfg(windows)'.dependencies.winapi]
25-
version = ">=0.3"
25+
version = "0.3"
2626
features = ["errhandlingapi", "sysinfoapi"]
2727

2828
[dev-dependencies]
2929
criterion = "0.3.0"
30-
matches = ">=0"
31-
vmm-sys-util = ">= 0.4.0"
30+
matches = "0"
31+
vmm-sys-util = "0.10.0"
3232

3333
[[bench]]
3434
name = "main"

0 commit comments

Comments
 (0)