forked from gtk-rs/gtk4-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (57 loc) · 2.29 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
64
[package]
documentation = "https://gtk-rs.org/docs/gtk4/"
categories = ["api-bindings", "gui"]
license = "MIT"
description = "Rust bindings for the GTK 4 library"
name = "gtk4"
homepage = "https://gtk-rs.org/"
authors = ["The Gtk-rs Project Developers"]
readme = "README.md"
version = "0.1.0"
keywords = ["gtk", "gtk4", "gtk-rs", "gnome", "GUI"]
repository = "https://github.com/gtk-rs/gtk4"
build = "build.rs"
exclude = [
"gir-files/*",
]
[badges]
appveyor = { repository = "GuillaumeGomez/gtk4", service = "github" }
travis-ci = { repository = "gtk-rs/gtk4" }
[lib]
name = "gtk4"
[features]
purge-lgpl-docs = ["gtk-rs-lgpl-docs", "gdk4/purge-lgpl-docs", "gsk4/purge-lgpl-docs"]
embed-lgpl-docs = ["gtk-rs-lgpl-docs", "gdk4/embed-lgpl-docs", "gsk4/embed-lgpl-docs"]
dox = ["gdk4/dox", "gsk4/dox", "gtk4-sys/dox"]
[package.metadata.docs.rs]
features = ["dox", "embed-lgpl-docs"]
[build-dependencies.gtk-rs-lgpl-docs]
version = "0.1.3"
optional = true
git = "https://github.com/gtk-rs/lgpl-docs"
[dependencies]
libc = "0.2"
bitflags = "1.0"
once_cell = "1.0"
atk = { git = "https://github.com/gtk-rs/atk" }
atk-sys = { git = "https://github.com/gtk-rs/sys" }
cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo" }
gdk-pixbuf-sys = { git = "https://github.com/gtk-rs/sys" }
gdk4-sys = { git = "https://github.com/gtk-rs/sys" }
gio-sys = { git = "https://github.com/gtk-rs/sys" }
glib-sys = { git = "https://github.com/gtk-rs/sys" }
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
graphene-sys = { git = "https://github.com/gtk-rs/graphene" }
gsk4-sys = { git = "https://github.com/gtk-rs/sys" }
gtk4-sys = { git = "https://github.com/gtk-rs/sys" }
pango-sys = { git = "https://github.com/gtk-rs/sys" }
cairo-rs = { git = "https://github.com/gtk-rs/cairo" }
gio = { git = "https://github.com/gtk-rs/gio", features = ["v2_46"] }
glib = { git = "https://github.com/gtk-rs/glib" }
gdk4 = { git = "https://github.com/bilelmoussaoui/gdk4", branch = "bilelmoussaoui/update" }
graphene = { package = "graphene-rs", git = "https://github.com/gtk-rs/graphene" }
gsk4 = { git = "https://github.com/bilelmoussaoui/gsk4", branch = "bilelmoussaoui/update" }
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf" }
pango = { git = "https://github.com/gtk-rs/pango", features = ["v1_46"] }
[dev-dependencies]
gir-format-check = "^0.1"