Skip to content

Commit f1270e6

Browse files
Add a basic gdk4-macos
1 parent 7274672 commit f1270e6

27 files changed

+1082
-0
lines changed

Cargo.lock

Lines changed: 24 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ members = [
2323
"gdk4-wayland/sys",
2424
"gdk4-win32",
2525
"gdk4-win32/sys",
26+
"gdk4-macos",
27+
"gdk4-macos/sys",
2628
"gsk4",
2729
"gsk4/sys",
2830
"gtk4",
@@ -58,6 +60,7 @@ libc = "0.2"
5860
pango-sys = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.21", branch = "main", features = ["v1_46"]}
5961
pango = {git = "https://github.com/gtk-rs/gtk-rs-core", version = "0.21", branch = "main", features = ["v1_46"]}
6062
gir-format-check = "^0.1"
63+
gdk4-macos-sys = {path = "gdk4-macos/sys", version = "0.10"}
6164
gdk4-x11-sys = {path = "gdk4-x11/sys", version = "0.10"}
6265
gdk4-wayland-sys = {path = "gdk4-wayland/sys", version = "0.10"}
6366
gdk4-win32-sys = {path = "gdk4-win32/sys", version = "0.10"}

gdk4-macos/COPYRIGHT

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../COPYRIGHT

gdk4-macos/Cargo.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[package]
2+
name = "gdk4-macos"
3+
description = "Rust bindings of the GDK4 macos library"
4+
documentation = "https://gtk-rs.org/gtk4-rs/stable/latest/docs/gdk4_macos/"
5+
keywords = ["gdk4", "gdk4-macos", "gtk-rs", "gnome", "GUI"]
6+
readme = "README.md"
7+
authors.workspace = true
8+
categories.workspace = true
9+
edition.workspace = true
10+
homepage.workspace = true
11+
license.workspace = true
12+
repository.workspace = true
13+
rust-version.workspace = true
14+
version.workspace = true
15+
16+
[features]
17+
18+
[dependencies]
19+
gdk4-macos-sys.workspace = true
20+
gdk.workspace = true
21+
gio.workspace = true
22+
glib.workspace = true
23+
libc.workspace = true
24+
25+
[dev-dependencies]
26+
gir-format-check.workspace = true
27+
28+
[package.metadata.docs.rs]
29+
all-features = true
30+
rustc-args = ["--cfg", "docsrs"]
31+
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]

0 commit comments

Comments
 (0)