-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
48 lines (39 loc) · 1.13 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
[package]
name = "rgtk"
version = "0.0.1"
authors = ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "Gleb Kozyrev <[email protected]>"]
description = "A rust binding for the GTK+ library"
repository = "https://github.com/jeremyletang/rgtk"
license = "LGPL-3.0+"
[dependencies]
libc = "0.1"
c_vec = "^1.0.0"
[features]
default = ["GTK_3_6", "CAIRO_1_10"]
GTK_3_4 = ["gtk3-sys/GTK_3_4"]
GTK_3_6 = ["gtk3-sys/GTK_3_6", "GTK_3_4"]
GTK_3_8 = ["gtk3-sys/GTK_3_8", "GTK_3_6"]
GTK_3_10 = ["gtk3-sys/GTK_3_10", "GTK_3_8"]
GTK_3_12 = ["gtk3-sys/GTK_3_12", "GTK_3_10"]
GTK_3_14 = ["gtk3-sys/GTK_3_14", "GTK_3_12"]
CAIRO_1_10 = ["cairo-sys/CAIRO_1_10"]
CAIRO_1_12 = ["cairo-sys/CAIRO_1_12", "CAIRO_1_10"]
[lib]
name = "rgtk"
crate_type = ["rlib"]
path = "src/rgtk.rs"
[dependencies.glib-sys]
path = "glib-sys"
version = "0.1.0"
[dependencies.gdk3-sys]
path = "gdk3-sys"
version = "0.1.0"
[dependencies.gtk3-sys]
path = "gtk3-sys"
version = "0.1.0"
[dependencies.cairo-sys]
path = "cairo-sys"
version = "0.1.0"
[dependencies.glib]
path = "glib"
version = "0.1.0"