Skip to content

Commit dda91b1

Browse files
committed
Fix Cargo.toml
1 parent 0d662b1 commit dda91b1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

unity-native-plugin-sample/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unity-native-plugin-sample"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Yasuhiro Taniuchi"]
55
edition = "2018"
66

@@ -10,6 +10,6 @@ crate-type = ["cdylib"]
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
unity-native-plugin = { version = "0.1.0", path = "../unity-native-plugin", features = ["d3d11"] }
13+
unity-native-plugin = { version = "0.1.1", path = "../unity-native-plugin", features = ["d3d11"] }
1414
winapi = { version = "0.3.9", features = ["winuser", "d3d11", "dxgiformat"] }
1515
wio = "0.2.2"

unity-native-plugin-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unity-native-plugin-sys"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Yasuhiro Taniuchi"]
55
edition = "2018"
66
license = "MIT"

unity-native-plugin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "unity-native-plugin"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Yasuhiro Taniuchi"]
55
license = "MIT"
66
description = "Unity Native Plugin API for Rust"
@@ -19,7 +19,7 @@ include = [
1919
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2020

2121
[dependencies]
22-
unity-native-plugin-sys = { version = "0.1.0", path = "../unity-native-plugin-sys" }
22+
unity-native-plugin-sys = { version = "0.1.1", path = "../unity-native-plugin-sys" }
2323

2424
[features]
2525
default = []

0 commit comments

Comments
 (0)