This repository has been archived by the owner on Jun 8, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCargo.toml
82 lines (72 loc) · 2.19 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "gio"
license = "MIT"
homepage = "https://gtk-rs.org/"
authors = ["The Gtk-rs Project Developers"]
keywords = ["glib", "gio", "gtk-rs", "gnome"]
readme = "README.md"
documentation = "https://gtk-rs.org/docs/gio/"
version = "0.9.0"
description = "Rust bindings for the Gio library"
repository = "https://github.com/gtk-rs/gio"
build = "build.rs"
exclude = [
"gir-files/*",
]
[badges]
appveyor = { repository = "GuillaumeGomez/gio", service = "github" }
travis-ci = { repository = "gtk-rs/gio" }
[lib]
name = "gio"
[features]
v2_44 = ["gio-sys/v2_44", "glib/v2_44"]
v2_46 = ["v2_44", "gio-sys/v2_46", "glib/v2_46"]
v2_48 = ["v2_46", "gio-sys/v2_48", "glib/v2_48"]
v2_50 = ["v2_48", "gio-sys/v2_50", "glib/v2_50"]
v2_52 = ["v2_50", "gio-sys/v2_52", "glib/v2_52"]
v2_54 = ["v2_52", "gio-sys/v2_54", "glib/v2_54"]
v2_56 = ["v2_54", "gio-sys/v2_56", "glib/v2_56"]
v2_58 = ["v2_56", "gio-sys/v2_58", "glib/v2_58"]
v2_60 = ["v2_58", "gio-sys/v2_60", "glib/v2_60"]
v2_62 = ["v2_60", "gio-sys/v2_62", "glib/v2_62"]
v2_64 = ["v2_62", "gio-sys/v2_64", "glib/v2_64"]
v2_66 = ["v2_64", "gio-sys/v2_66", "glib/v2_66"]
dox = ["gio-sys/dox", "glib/dox"]
purge-lgpl-docs = ["gtk-rs-lgpl-docs"]
embed-lgpl-docs = ["gtk-rs-lgpl-docs"]
[package.metadata.docs.rs]
features = ["dox", "embed-lgpl-docs"]
[build-dependencies.gtk-rs-lgpl-docs]
version = "0.1"
optional = true
git = "https://github.com/gtk-rs/lgpl-docs"
[dependencies]
libc = "0.2"
bitflags = "1.0"
once_cell = "1.0"
futures = "0.3"
futures-core = "0.3"
futures-channel = "0.3"
futures-util = "0.3"
futures-io = "0.3"
gio-sys = { git = "https://github.com/gtk-rs/sys" }
glib-sys = { git = "https://github.com/gtk-rs/sys" }
glib = { git = "https://github.com/gtk-rs/glib" }
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
thiserror = "1"
[dev-dependencies]
gir-format-check = "^0.1"
serial_test = "0.4"
serial_test_derive = "0.4"
[[test]]
name = "futures"
path = "tests/futures.rs"
edition = "2018"
# Defining one [[test]] disable test targets auto discovery =
# TODO: remove once crate has been ported to 2018 and tests/futures.rs removed =
[[test]]
name = "std_io_copy"
path = "tests/std_io_copy.rs"
[[test]]
name = "check_gir"
path = "tests/check_gir.rs"