rustydialogs 0.4.0

Provides a simple and cross-platform way to display native dialog boxes.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "rustydialogs"
version = "0.4.0"
authors = ["Casper <CasualX@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provides a simple and cross-platform way to display native dialog boxes."
documentation = "https://docs.rs/rustydialogs"
readme = false
keywords = [
    "dialog",
    "ui",
    "message",
    "file",
]
categories = ["gui"]
license = "MIT"
repository = "https://github.com/CasualX/rustydialogs"

[features]
default = []
gtk3 = [
    "dep:gtk-sys",
    "dep:glib-sys",
    "dep:gobject-sys",
    "dep:gdk-sys",
    "libnotify",
]
gtk4 = [
    "dep:gtk4-sys",
    "dep:gdk4-sys",
    "dep:gtk4-gio-sys",
    "dep:gtk4-glib-sys",
    "dep:gtk4-gobject-sys",
    "libnotify",
]
libnotify = [
    "dep:libnotify-sys",
    "dep:gobject-sys",
]
winrt-toast = []
xdg-portal = ["dep:dbus"]

[lib]
name = "rustydialogs"
path = "src/lib.rs"

[[example]]
name = "color_picker"
path = "examples/color_picker.rs"

[[example]]
name = "folder_dialog"
path = "examples/folder_dialog.rs"

[[example]]
name = "message_box"
path = "examples/message_box.rs"

[[example]]
name = "notification"
path = "examples/notification.rs"

[[example]]
name = "open_file_dialog"
path = "examples/open_file_dialog.rs"

[[example]]
name = "save_file_dialog"
path = "examples/save_file_dialog.rs"

[[example]]
name = "text_input"
path = "examples/text_input.rs"

[dependencies.raw-window-handle]
version = "0.6"

[target.'cfg(target_os = "linux")'.dependencies.dbus]
version = "0.9"
optional = true

[target.'cfg(target_os = "linux")'.dependencies.gdk-sys]
version = "0.18"
optional = true

[target.'cfg(target_os = "linux")'.dependencies.gdk4-sys]
version = "0.11"
optional = true

[target.'cfg(target_os = "linux")'.dependencies.glib-sys]
version = "0.18"
optional = true

[target.'cfg(target_os = "linux")'.dependencies.gobject-sys]
version = "0.18"
optional = true

[target.'cfg(target_os = "linux")'.dependencies.gtk-sys]
version = "0.18"
optional = true

[target.'cfg(target_os = "linux")'.dependencies.gtk4-gio-sys]
version = "0.22"
optional = true
package = "gio-sys"

[target.'cfg(target_os = "linux")'.dependencies.gtk4-glib-sys]
version = "0.22"
optional = true
package = "glib-sys"

[target.'cfg(target_os = "linux")'.dependencies.gtk4-gobject-sys]
version = "0.22"
optional = true
package = "gobject-sys"

[target.'cfg(target_os = "linux")'.dependencies.gtk4-sys]
version = "0.11"
optional = true

[target.'cfg(target_os = "linux")'.dependencies.libc]
version = "0.2"

[target.'cfg(target_os = "linux")'.dependencies.libnotify-sys]
version = "1.0"
optional = true

[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
    "Data_Xml_Dom",
    "UI_Notifications",
    "Win32_Foundation",
    "Win32_System_Com",
    "Win32_System_Com_StructuredStorage",
    "Win32_System_LibraryLoader",
    "Win32_System_Variant",
    "Win32_UI_Controls",
    "Win32_UI_Controls_Dialogs",
    "Win32_UI_Shell",
    "Win32_UI_Shell_PropertiesSystem",
    "Win32_UI_Shell_Common",
    "Win32_UI_WindowsAndMessaging",
]