forked from gtk-rs/gtk4-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.12 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
[package]
authors = ["The gtk-rs Project Developers"]
description = "Rust bindings of the GDK 4 library"
documentation = "https://gtk-rs.org/gtk4-rs/stable/latest/docs/gdk4/"
edition = "2018"
homepage = "https://gtk-rs.org/"
keywords = ["gdk", "gdk4", "gtk-rs", "gnome", "GUI"]
license = "MIT"
name = "gdk4"
readme = "README.md"
repository = "https://github.com/gtk-rs/gtk4-rs"
include = ["../LICENSE"]
version = "0.3.0"
rust-version = "1.54"
[lib]
name = "gdk4"
[features]
dox = ["ffi/dox", "glib/dox", "gio/dox", "gdk-pixbuf/dox", "cairo-rs/dox", "pango/dox"]
v4_2 = ["ffi/v4_2"]
v4_4 = ["ffi/v4_4", "v4_2"]
[package.metadata.docs.rs]
features = ["dox"]
[dependencies]
bitflags = "1.0"
cairo-rs = {git = "https://github.com/gtk-rs/gtk-rs-core"}
ffi = {package = "gdk4-sys", path = "./sys"}
gdk-pixbuf = {git = "https://github.com/gtk-rs/gtk-rs-core"}
gio = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
glib = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v2_66"]}
libc = "0.2"
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", features = ["v1_46"]}
[dev-dependencies]
gir-format-check = "^0.1"