forked from gtk-rs/gtk4-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (43 loc) · 1.71 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
[package]
authors = ["The gtk-rs Project Developers"]
categories = ["api-bindings", "gui"]
description = "Rust bindings of the GTK 4 library"
documentation = "https://gtk-rs.org/gtk4-rs/stable/latest/docs/gtk4"
edition = "2021"
homepage = "https://gtk-rs.org/"
keywords = ["gtk", "gtk4", "gtk-rs", "gnome", "GUI"]
license = "MIT"
name = "gtk4"
readme = "README.md"
repository = "https://github.com/gtk-rs/gtk4-rs"
version = "0.5.0"
rust-version = "1.57"
[lib]
name = "gtk4"
[features]
dox = ["gdk/dox", "gsk/dox", "ffi/dox"]
v4_2 = ["ffi/v4_2", "gdk/v4_2", "gsk/v4_2"]
v4_4 = ["ffi/v4_4", "v4_2", "gdk/v4_4", "gsk/v4_4"]
v4_6 = ["ffi/v4_6", "v4_4", "gdk/v4_6", "gsk/v4_6", "pango/v1_50"]
v4_8 = ["ffi/v4_8", "v4_6", "gdk/v4_8"]
unsafe-assume-initialized = []
[package.metadata.docs.rs]
features = ["dox"]
[dependencies]
bitflags = "1.0"
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
ffi = {package = "gtk4-sys", path = "./sys", version = "0.5.0"}
field-offset = "0.3"
futures-channel = "0.3"
gdk = {package = "gdk4", path = "../gdk4", version = "0.5.0"}
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v2_66"]}
graphene = {package = "graphene-rs", git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16"}
gsk = {package = "gsk4", path = "../gsk4", version = "0.5.0"}
gtk4-macros = {path = "../gtk4-macros", version = "0.5.0"}
libc = "0.2"
once_cell = "1.0"
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.16", features = ["v1_46"]}
[dev-dependencies]
gir-format-check = "^0.1"