Skip to content

Commit 51d1592

Browse files
committed
bump dependencies
1 parent 7186a72 commit 51d1592

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/target
22
Cargo.lock
3+
.vscode

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-gltf"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
authors = ["Florian Amsallem <[email protected]>"]
55
description = "glTF 2.0 loader with an easy to use output"
66
documentation = "https://docs.rs/easy-gltf"
@@ -13,6 +13,6 @@ exclude = [".github/"]
1313

1414
[dependencies]
1515
cgmath = "0.18.0"
16-
gltf = {version = "0.15.2", features = ["KHR_lights_punctual"]}
17-
image = "0.23.14"
16+
gltf = {version = "1.0.0", features = ["KHR_lights_punctual"]}
17+
image = "0.24.1"
1818
base64 = "0.13.0"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To install it, just add the dependency in your `Cargo.toml`.
2626

2727
```toml
2828
[dependencies]
29-
easy-gltf="0.1.4"
29+
easy-gltf="0.1.5"
3030
```
3131

3232
### Usage

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies]
12-
//! easy-gltf="0.1.4"
12+
//! easy-gltf="0.1.5"
1313
//! ```
1414
//!
1515
//! # Example

0 commit comments

Comments
 (0)