Bump uuid and bindgen dependencies (#387)

master
Jon Gjengset 4 years ago committed by GitHub
parent aa1aa97163
commit 3b9df2dd05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      librocksdb-sys/Cargo.toml
  2. 1
      librocksdb-sys/build.rs

@ -27,9 +27,9 @@ libc = "0.2"
[dev-dependencies]
const-cstr = "0.3"
uuid = { version = "0.7", features = ["v4"] }
uuid = { version = "0.8", features = ["v4"] }
[build-dependencies]
cc = { version = "^1.0", features = ["parallel"] }
bindgen = "0.49"
bindgen = "0.53"
glob = "0.3"

@ -32,6 +32,7 @@ fn bindgen_rocksdb() {
.derive_debug(false)
.blacklist_type("max_align_t") // https://github.com/rust-lang-nursery/rust-bindgen/issues/550
.ctypes_prefix("libc")
.size_t_is_usize(true)
.generate()
.expect("unable to generate rocksdb bindings");

Loading…
Cancel
Save