From 257f7f70e3c9827eea35307d920b5b172326dc78 Mon Sep 17 00:00:00 2001 From: Graham Wihlidal Date: Sat, 2 Nov 2019 20:18:52 -0600 Subject: [PATCH] Updated all dependencies, and removed "parallel" feature from `cc` dependency. --- CHANGES.md | 5 +++++ Cargo.toml | 14 +++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 957a01a..faf49b4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## 0.2.2 (2019-11-02) + +* Upgraded all dependencies. +* Removed "parallel" feature from `cc` dependency. + ## 0.2.1 (2019-03-29) * Minor improvements. diff --git a/Cargo.toml b/Cargo.toml index 071a09b..551a967 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spirv-reflect" -version = "0.2.1" +version = "0.2.2" authors = ["Graham Wihlidal "] description = "Reflection API in rust for SPIR-V shader byte code, intended for Vulkan applications." homepage = "https://github.com/gwihlidal/spirv-reflect-rs" @@ -36,20 +36,20 @@ travis-ci = { repository = "gwihlidal/spirv-reflect-rs" } maintenance = { status = "actively-developed" } [dependencies] -bitflags = "1.0.4" +bitflags = "1.2.1" spirv_headers = "1.3.4" -num-traits = "0.2.6" +num-traits = "0.2.8" serde = "1.0" -serde_derive = "1.0.89" +serde_derive = "1.0.102" [dev-dependencies] -serde_yaml = "0.8.8" +serde_yaml = "0.8.11" [build-dependencies] -cc = { version = "1.0.32", features = ["parallel"] } +cc = "1.0.46" [build-dependencies.bindgen] -version = "0.49.0" +version = "0.51.1" optional = true [profile.release]