forked from gtk-rs/gtk4-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (53 loc) · 1.38 KB
/
Cargo.toml
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
[package]
authors = ["The gtk-rs Project Developers"]
description = "Rust bindings of the GDK4 Win32 library"
documentation = "https://gtk-rs.org/gtk4-rs/stable/latest/docs/gdk4_win32/"
edition = "2021"
homepage = "https://gtk-rs.org/"
keywords = ["gdk4", "gdk4-win32", "gtk-rs", "gnome", "GUI"]
license = "MIT"
name = "gdk4-win32"
readme = "README.md"
repository = "https://github.com/gtk-rs/gtk4-rs"
version = "0.6.0"
rust-version = "1.63"
build = "build.rs"
[package.metadata.docs.rs]
features = ["dox"]
[package.metadata.system-deps.gtk4_win32]
name = "gtk4-win32"
version = "4"
[features]
v4_4 = ["ffi/v4_4"]
dox = ["ffi/dox", "gdk/dox", "gio/dox", "glib/dox", "egl", "win32"]
egl = ["khronos-egl"]
win32 = ["windows"]
[dependencies]
libc = "0.2"
khronos-egl = {version = "4.1.0", optional = true}
windows = { version = "0.41.0", features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
], optional = true }
[dependencies.ffi]
path = "./sys"
package = "gdk4-win32-sys"
version = "0.6.0"
[dependencies.gdk]
path = "../gdk4"
package = "gdk4"
version = "0.6.0"
[dependencies.gio]
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.17"
features = ["v2_66"]
[dependencies.glib]
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.17"
features = ["v2_66"]
[dev-dependencies]
gir-format-check = "^0.1"
shell-words = "1.0.0"
tempfile = "3"
[build-dependencies]
system-deps = "6"