-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (20 loc) · 877 Bytes
/
Cargo.toml
File metadata and controls
26 lines (20 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "unity-native-plugin-sample"
version = "0.9.0"
authors = ["Yasuhiro Taniuchi"]
edition = "2024"
publish = false
[lib]
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
unity-native-plugin = { version = "0.9.0", path = "../unity-native-plugin", features = ["d3d11", "d3d12", "metal", "profiler", "vulkan"] }
unity-native-plugin-sys = { version = "0.9.0", path = "../unity-native-plugin-sys" }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["winuser", "d3d11", "d3d12", "dxgiformat", "d3dcommon"] }
wio = "0.2.2"
[target.'cfg(target_vendor = "apple")'.dependencies]
objc2 = "0.6.3"
objc2-metal = "0.3.2"
[dev-dependencies]
unity-native-plugin-tester = { version = "0.9.0", path = "../unity-native-plugin-tester", features = ["d3d11"] }