File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -71,16 +71,14 @@ location searched: crates.io index
71
71
required by package `tmp-oyyzsf v0.1.0 (/home/ethan/.cache/cargo-temp/tmp-OYyZsF)`
72
72
```
73
73
74
- Consider this table where ` a.b.c ` is compatible with ` x.y.z ` and ` x.y.z > a.b.c `
75
-
76
74
| Cargo.toml spec | Cargo.lock version | Target version | Selected by cargo update | Selected by cargo update --precise |
77
75
| --------------- | ------------------ | -------------- | ------------------------- | ----------------------------------- |
78
- | ` ^a.b.c ` | ` a.b.c ` | ` x.y.z ` | ✅ | ✅ |
79
- | ` ^a.b.c ` | ` a.b.c ` | ` x.y.z -pre.0` | ❌ | ✅ |
80
- | ` ^a.b.c ` | ` x.y.z -pre.0` | ` x.y.z -pre.1` | ❌ | ✅ |
81
- | ` ^a.b.c -pre.0 ` | ` a.b.c -pre.0` | ` a.b.c -pre.1` | ✅¹ | ✅ |
82
- | ` ^a.b.c -pre.0 ` | ` a.b.c -pre.0` | ` x.y.z ` | ✅¹ | ✅ |
83
- | ` ^a.b.c ` | ` a.b.c ` | ` a.b.c -pre.0` | ❌ | ❌ |
76
+ | ` ^1.0.0 ` | ` 1.0.0 ` | ` 1.2.0 ` | ✅ | ✅ |
77
+ | ` ^1.0.0 ` | ` 1.0.0 ` | ` 1.2.0 -pre.0` | ❌ | ✅ |
78
+ | ` ^1.0.0 ` | ` 1.2.0 -pre.0` | ` 1.2.0 -pre.1` | ❌ | ✅ |
79
+ | ` ^1.0.0 -pre.0 ` | ` 1.0.0 -pre.0` | ` 1.0.0 -pre.1` | ✅¹ | ✅ |
80
+ | ` ^1.0.0 -pre.0 ` | ` 1.0.0 -pre.0` | ` 1.2.0 ` | ✅¹ | ✅ |
81
+ | ` ^1.0.0 ` | ` 1.0.0 ` | ` 1.0.0 -pre.0` | ❌ | ❌ |
84
82
85
83
✅: Will upgrade
86
84
You can’t perform that action at this time.
0 commit comments