error[E0412]: cannot find type `off_t` in crate `libc`
--> /home/patiga/.cargo/registry/src/github.com-1ecc6299db9ec823/libz-sys-1.1.2/src/lib.rs:25:26
|
25 | pub type z_off_t = libc::off_t;
| ^^^^^ not found in `libc`
hm it doesnt seem to like my zlib cratelibz-sys = { version = "1.1.0", default-features = false }
(without , features = ["libc"]
) would be enough, but it just delayed the error to where it compiles my program, not just the dependencies ^^