Skip to content
This repository was archived by the owner on Jun 8, 2021. It is now read-only.

Commit 5223c51

Browse files
authored
Merge pull request #502 from EPashkin/eoan
New version
2 parents da4ef75 + 56be8b2 commit 5223c51

File tree

6 files changed

+15
-4
lines changed

6 files changed

+15
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ v2_52 = ["v2_50", "glib-sys/v2_52"]
4040
v2_54 = ["v2_52", "glib-sys/v2_54", "gobject-sys/v2_54"]
4141
v2_56 = ["v2_54", "glib-sys/v2_56"]
4242
v2_58 = ["v2_56", "glib-sys/v2_58"]
43+
v2_60 = ["v2_58", "glib-sys/v2_60"]
4344
futures = ["futures-preview"]
4445
subclassing = []
4546
dox = ["glib-sys/dox", "gobject-sys/dox"]

src/auto/constants.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,14 @@ lazy_static! {
231231
pub static ref STR_DELIMITERS: &'static str =
232232
unsafe { CStr::from_ptr(glib_sys::G_STR_DELIMITERS).to_str().unwrap() };
233233
}
234+
#[cfg(any(feature = "v2_60", feature = "dox"))]
235+
lazy_static! {
236+
pub static ref TEST_OPTION_ISOLATE_DIRS: &'static str = unsafe {
237+
CStr::from_ptr(glib_sys::G_TEST_OPTION_ISOLATE_DIRS)
238+
.to_str()
239+
.unwrap()
240+
};
241+
}
234242
lazy_static! {
235243
pub static ref URI_RESERVED_CHARS_GENERIC_DELIMITERS: &'static str = unsafe {
236244
CStr::from_ptr(glib_sys::G_URI_RESERVED_CHARS_GENERIC_DELIMITERS)

src/auto/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ pub use self::constants::KEY_FILE_DESKTOP_TYPE_DIRECTORY;
8383
pub use self::constants::KEY_FILE_DESKTOP_TYPE_LINK;
8484
pub use self::constants::OPTION_REMAINING;
8585
pub use self::constants::STR_DELIMITERS;
86+
#[cfg(any(feature = "v2_60", feature = "dox"))]
87+
pub use self::constants::TEST_OPTION_ISOLATE_DIRS;
8688
pub use self::constants::URI_RESERVED_CHARS_GENERIC_DELIMITERS;
8789
pub use self::constants::URI_RESERVED_CHARS_SUBCOMPONENT_DELIMITERS;
8890

src/auto/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ 7d51043)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ 617a344)
1+
Generated by gir (https://github.com/gtk-rs/gir @ a080a17)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ 6b1fe0b)

0 commit comments

Comments
 (0)