rust-cbindgen: 0.25.0 -> 0.26.0

https://github.com/mozilla/cbindgen/blob/v0.26.0/CHANGES

+3 -3
+3 -3
pkgs/development/tools/rust/cbindgen/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "rust-cbindgen"; 12 - version = "0.25.0"; 12 + version = "0.26.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "mozilla"; 16 16 repo = "cbindgen"; 17 17 rev = "v${version}"; 18 - hash = "sha256-gljICr0abKEXxJfLCJN3L2OIwUvw/QoIC6T5C7pieEA="; 18 + hash = "sha256-gyNZAuxpeOjuC+Rh9jAyHSBQRRYUlYoIrBKuCFg3Hao="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-agBzn2MibM7158/QlLXI2HBBcYIe0p50rYSF1jBDF8U="; 21 + cargoSha256 = "sha256-pdTxhECAZzBx5C01Yx7y/OGwhhAdlEDpqLBdvQcb8bc="; 22 22 23 23 buildInputs = lib.optional stdenv.isDarwin Security; 24 24