This repository has been archived by the owner on Feb 13, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
51 lines (45 loc) · 1.66 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
[package]
name = "gsk4"
license = "MIT"
homepage = "https://gtk-rs.org/"
authors = ["The Gtk-rs Project Developers"]
keywords = ["gsk", "gsk4", "gtk", "gtk-rs", "gnome", "GUI"]
readme = "README.md"
documentation = "https://gtk-rs.org/docs/gsk4/"
version = "0.1.0"
description = "Rust bindings for the GSK 4 library"
repository = "https://github.com/gtk-rs/gsk4"
build = "build.rs"
exclude = [
"gir-files/*",
]
[lib]
name = "gsk4"
[features]
dox = ["gsk4-sys/dox", "gdk4/dox", "graphene/dox", "glib/dox", "cairo-rs/dox", "pango/dox"]
purge-lgpl-docs = ["gtk-rs-lgpl-docs", "gdk4/purge-lgpl-docs", "graphene/purge-lgpl-docs", "cairo-rs/purge-lgpl-docs"]
embed-lgpl-docs = ["gtk-rs-lgpl-docs", "gdk4/embed-lgpl-docs", "graphene/embed-lgpl-docs", "cairo-rs/embed-lgpl-docs"]
vulkan = []
broadway = []
[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"
glib-sys = { git = "https://github.com/gtk-rs/sys" }
gdk4-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" }
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
cairo-sys-rs = { git = "https://github.com/gtk-rs/cairo" }
cairo-rs = { git = "https://github.com/gtk-rs/cairo" }
glib = { git = "https://github.com/gtk-rs/glib" }
gdk4 = { git = "https://github.com/gtk-rs/gdk4" }
graphene = { package = "graphene-rs", git = "https://github.com/gtk-rs/graphene" }
pango = { git = "https://github.com/gtk-rs/pango" }
[dev-dependencies]
gir-format-check = "^0.1"