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 = "gweather-sys"
version = "4.5.0"
authors = ["Jamie Murphy <hello@itsjamie.dev>"]
edition = "2021"
build = "build.rs"
links = "gweather4"
categories = ["api-bindings"]
keywords = ["gtk4-rs", "gnome", "weather", "gweather"]
description = "FFI bindings for libgweather"
license = "MIT"
homepage = "https://gitlab.gnome.org/World/Rust/libgweather-rs"
repository = "https://gitlab.gnome.org/World/Rust/libgweather-rs"
documentation = "https://world.pages.gitlab.gnome.org/Rust/libgweather-rs/stable/latest/docs/gweather_sys"
[package.metadata.system-deps.gweather4]
name = "gweather4"
version = "4"
[package.metadata.docs.rs]
features = []
rustc-args = ["--cfg", "docsrs"]
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
[lib]
name = "gweather_sys"
[dependencies]
libc = "0.2"
[dependencies.gio-sys]
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.20"
branch = "0.20"
[dependencies.glib-sys]
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.20"
branch = "0.20"
[dependencies.gobject-sys]
git = "https://github.com/gtk-rs/gtk-rs-core"
version = "0.20"
branch = "0.20"
[build-dependencies]
system-deps = "7"
[dev-dependencies]
shell-words = "1.0.0"
tempfile = "3"
[features]
|