diff --git a/.gitignore b/.gitignore index 96ef6c0..c640ca5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target Cargo.lock +.vscode diff --git a/Cargo.toml b/Cargo.toml index bba81d6..d555f0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "easy-gltf" -version = "0.1.4" +version = "0.1.5" authors = ["Florian Amsallem "] description = "glTF 2.0 loader with an easy to use output" documentation = "https://docs.rs/easy-gltf" @@ -13,6 +13,6 @@ exclude = [".github/"] [dependencies] cgmath = "0.18.0" -gltf = {version = "0.15.2", features = ["KHR_lights_punctual"]} -image = "0.23.14" +gltf = {version = "1.0.0", features = ["KHR_lights_punctual"]} +image = "0.24.1" base64 = "0.13.0" diff --git a/README.md b/README.md index 9ccf555..798e575 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To install it, just add the dependency in your `Cargo.toml`. ```toml [dependencies] -easy-gltf="0.1.4" +easy-gltf="0.1.5" ``` ### Usage diff --git a/src/lib.rs b/src/lib.rs index 9744629..e2f4484 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! //! ```toml //! [dependencies] -//! easy-gltf="0.1.4" +//! easy-gltf="0.1.5" //! ``` //! //! # Example