Fixing compilation errors on Windows
[?]
Jan 5, 2021, 6:34 PM
53LCNWY2MBI4LX54LGUJFUOLIJUFOEYN3NUZAX7O5XTHT44ZJ22QCDependencies
- [2]
TKSHSYFMUsing pkg-config to find the libraries (+ some cleanup) - [3]
UPRY2FELRemove bindgen dependency - [4]
HELRYMZKManual bindings (Windows and Clang aren't very good friends), and getting rid of anyhow - [5]
IH334Q5AReboot
Change contents
- replacement in build.rs at line 11
pkg_config::probe_library("libzstd").unwrap();pkg_config::probe_library("libxxhash").unwrap();if pkg_config::probe_library("libzstd").is_err() {println!("cargo:rustc-link-lib=zstd");}if pkg_config::probe_library("libxxhash").is_err() {println!("cargo:rustc-link-lib=xxhash");} - replacement in Cargo.toml at line 4
version = "0.1.6"version = "0.1.7"