Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
flomonster committed Apr 19, 2022
1 parent 7186a72 commit 51d1592
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/target
Cargo.lock
.vscode
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "easy-gltf"
version = "0.1.4"
version = "0.1.5"
authors = ["Florian Amsallem <florian.amsallem@epita.fr>"]
description = "glTF 2.0 loader with an easy to use output"
documentation = "https://docs.rs/easy-gltf"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//!
//! ```toml
//! [dependencies]
//! easy-gltf="0.1.4"
//! easy-gltf="0.1.5"
//! ```
//!
//! # Example
Expand Down

0 comments on commit 51d1592

Please sign in to comment.