-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve metadata for
hyprland-macros
- Loading branch information
Showing
5 changed files
with
29 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "hyprland" | ||
version = "0.3.1" | ||
edition = "2021" | ||
authors = ["yavko <[email protected]>"] | ||
license = "GPL-3.0-or-later" | ||
keywords = ["hyprland", "ipc", "hypr", "wayland", "linux"] | ||
categories = ["api-bindings"] | ||
readme = "README.md" | ||
description = "A unoffical rust wrapper for hyprland's IPC" | ||
homepage = "https://github.com/hyprland-community/hyprland-rs" | ||
repository = "https://github.com/hyprland-community/hyprland-rs" | ||
version.workspace = true | ||
license.workspace = true | ||
author.workspace = true | ||
repository.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[package.metadata.nix] | ||
|
@@ -23,8 +23,17 @@ lto = true | |
[workspace] | ||
members = ["hyprland-macros"] | ||
|
||
[workspace.package] | ||
version = "0.3.1" | ||
license = "GPL-3.0-or-later" | ||
repository = "https://github.com/hyprland-community/hyprland-rs" | ||
keywords = ["hyprland", "ipc", "hypr", "wayland", "linux"] | ||
categories = ["api-bindings"] | ||
authors = ["yavko <[email protected]>"] | ||
|
||
|
||
[dependencies] | ||
hyprland-macros = { path = "./hyprland-macros/" } | ||
hyprland-macros = { path = "hyprland-macros", version = "0.3.1" } | ||
serde = {version = "1", features = ["derive"]} | ||
serde_json = "1" | ||
serde_repr = "0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
[package] | ||
name = "hyprland-macros" | ||
version = "0.1.0" | ||
description = "Macros used in hyprland-rs" | ||
version.workspace = true | ||
license.workspace = true | ||
readme = "README.md" | ||
edition = "2021" | ||
homepage = "https://github.com/hyprland-community/hyprland-rs/tree/master/hyprland-macros" | ||
|
||
[package.metadata.nix] | ||
build = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
proc-macro = true | ||
|
||
[dependencies] | ||
syn = "2" | ||
syn = { version = "2", features = ["full", "parsing"]} | ||
quote = "1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Hyprland Macros | ||
Literally only async closure macro lol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters