-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (62 loc) · 1.95 KB
/
Cargo.toml
File metadata and controls
71 lines (62 loc) · 1.95 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "miniquad"
version = "0.3.15"
authors = ["not-fl3 <not.fl3@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
homepage = "https://github.com/not-fl3/miniquad"
repository = "https://github.com/not-fl3/miniquad"
description = """
Cross-platform window context and rendering library.
"""
readme = "README.md"
keywords = ["graphics", "3D", "opengl", "gamedev", "windowing"]
categories = ["rendering::graphics-api"]
[features]
# Optional log-rs like macros implementation
# disabled by default
log-impl = []
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = [
"wingdi",
"winuser",
"libloaderapi",
"windef",
"shellscalingapi",
"errhandlingapi",
"windowsx",
"winbase",
"hidusage",
] }
[target.'cfg(target_os = "android")'.dependencies]
libc = "0.2"
ndk-sys = "0.2"
ndk-context = "0.1"
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
objc = "0.2"
[dev-dependencies]
glam = { version = "0.14", features = ["scalar-math"] }
quad-rand = "0.1"
[target.'cfg(target_env = "ohos")'.dependencies]
ohos-xcomponent-binding = "0.1"
raw-window-handle = "0.6"
napi-ohos = { version = "1.1.3", default-features = false, features = [
"napi8",
"async",
] }
napi-derive-ohos = { version = "1.1.3" }
ohos-hilog-binding = { version = "0.1.2" }
xcomponent-sys = { version = "0.3.4", features = ["api-14", "keyboard-types"] }
keyboard-types = "0.8.3"
ohos-xcomponent-sys = { version = "0.0.2" }
ohos_enum_macro = { version = "0.0.2" }
ohos-ime-binding = { version = "0.1.0" }
ohos-input-sys = { version = "0.3.2", features = ["api-17"] }
ohos-sys-opaque-types = { version = "0.1.7" }
ohos-qos-sys = { version = "0.0.1", features = ["api-20"] }
ohos-native-window-sys = { version = "0.0.1" }
ohos-native-buffer-sys = { version = "0.0.1" }
[target.'cfg(target_env = "ohos")'.build-dependencies]
napi-build-ohos = { version = "1.1.3" }