-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
Cargo.toml
53 lines (42 loc) · 967 Bytes
/
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
[package]
name = "gtk-rs-examples"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
futures = "0.3"
futures-channel = "0.3"
futures-util = "0.3"
glib.workspace = true
gio.workspace = true
[dependencies.async-tls]
version = "0.12"
optional = true
[build-dependencies.glib-build-tools]
path = "../glib-build-tools"
[[bin]]
name = "gio_async_tls"
path = "gio_async_tls/main.rs"
required-features = ["async-tls"]
[[bin]]
name = "gio_cancellable_future"
path = "gio_cancellable_future/main.rs"
[[bin]]
name = "gio_futures"
path = "gio_futures/main.rs"
[[bin]]
name = "gio_futures_await"
path = "gio_futures_await/main.rs"
[[bin]]
name = "gio_dbus_register_object"
path = "gio_dbus_register_object/main.rs"
[[bin]]
name = "gio_task"
path = "gio_task/main.rs"
[[bin]]
name = "object_subclass"
path = "object_subclass/main.rs"
[[bin]]
name = "virtual_methods"
path = "virtual_methods/main.rs"