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 = "tests"
publish = false
license.workspace = true
version.workspace = true
edition.workspace = true
rust-version.workspace = true
[features]
default = ["async-io"]
async-io = ["glycin/async-io", "glycin-utils/async-io"]
tokio = ["glycin/tokio", "glycin-utils/tokio"]
[dev-dependencies]
async-io.workspace = true
blocking.workspace = true
glycin = { workspace = true, features = ["gdk4"] }
glycin-utils = { workspace = true, features = ["loader-utils"] }
gio.workspace = true
tokio.workspace = true
gdk.workspace = true
zbus = { workspace = true, features = ["p2p"] }
tracing-subscriber.workspace = true
# The unmaintained serde_yaml 0.9 crate should work here as well
serde_yaml = "0.9.33"
# serde_yaml = { package = "serde_yaml_ng", version = "0.10.0" }
[[test]]
name = "change_memory_format"
path = "change_memory_format.rs"
[[test]]
name = "editing"
path = "editing.rs"
[[test]]
name = "tests"
path = "tests.rs"
[[test]]
name = "encoding"
path = "encoding.rs"
[[test]]
name = "dbus_api_stability"
path = "dbus_api_stability.rs"
[dependencies]
gufo-common.workspace = true
|