projects
/
ostree.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41c56b3
)
rust: Add missing feature versions
author
Colin Walters
<walters@verbum.org>
Wed, 20 Dec 2023 02:01:21 +0000
(21:01 -0500)
committer
Colin Walters
<walters@verbum.org>
Wed, 20 Dec 2023 02:02:59 +0000
(21:02 -0500)
- We missed 2022_2, which specifically includes
https://docs.rs/ostree/latest/ostree/static.PATH_BOOTED.html
and I was really confused why that was missing
- Add more recent upstream versions too
Cargo.toml
patch
|
blob
|
history
diff --git
a/Cargo.toml
b/Cargo.toml
index 4633410ed5e503d3c83a4577e8af6f22ed444f74..dc87f9486a68dcc3c2d0b8f7b203b7255407ebd3 100644
(file)
--- a/
Cargo.toml
+++ b/
Cargo.toml
@@
-94,5
+94,8
@@
v2021_2 = ["v2021_1", "ffi/v2021_2"]
v2021_3 = ["v2021_2", "ffi/v2021_3"]
v2021_4 = ["v2021_3", "ffi/v2021_4"]
v2021_5 = ["v2021_4", "ffi/v2021_5"]
-v2022_5 = ["v2021_5", "ffi/v2022_5"]
+v2022_2 = ["v2021_5", "ffi/v2022_2"]
+v2022_5 = ["v2022_2", "ffi/v2022_5"]
v2022_6 = ["v2022_5", "ffi/v2022_6"]
+v2022_7 = ["v2022_6", "ffi/v2022_7"]
+v2023_1 = ["v2022_7", "ffi/v2023_1"]