Evgenii Pashkin
Evgenii Pashkin
This example stalling after writing second "Kek" but works fine if "log_file" commented. ``` // log = "0.4.14" // fern = "0.6.0" use std::fmt; fn setup_logger() -> Result { fern::Dispatch::new()...
In https://github.com/gkoz/gir/blob/master/src/config.rs we use this enum for error of configuration processing: ``` #[derive(Debug)] pub enum Error { CommandLine(DocoptError), Io(IoError, PathBuf), Toml(String, PathBuf), Options(String, PathBuf), } ``` Last 3 errors here...
As it not used with crate `system_deps`. It was added in #915, @kinnison @sdroege Seems now it need be "generate_build_rs = false" instead of "split_build_rs=true" at minimum in gdk-sys
Ex. `gtk_selection_data_get_data_with_length` shadows `gtk_selection_data_get_data` So in normal mode gir need: don't generate function that call `gtk_selection_data_get_data`, generate call `gtk_selection_data_get_data_with_length` with name `get_data`.
Boxed types has build-in implementation for `ToGlibContainerFromSlice for &'a T` don't works with boxed types too because they not define `ToGlibPtr` instead. Found on `pub fn gtk_source_file_loader_set_candidate_encodings(loader: *mut GtkSourceFileLoader, candidate_encodings:...
Fix #160 @velyan Can you confirm that it works? Note there also two fields in iterator but its seems not changed on iterating and filled only on initialization. ``` struct...
Currently added few test for parsing library, planned add test for check function generation