-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use workspace package control global values
- Loading branch information
1 parent
0ecd4e4
commit eeb2589
Showing
4 changed files
with
45 additions
and
28 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,6 +1,17 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"wayshot", | ||
"libwayshot", | ||
] | ||
members = ["wayshot", "libwayshot"] | ||
|
||
[workspace.package] | ||
authors = ["Shinyzenith <https://aakash.is-a.dev>"] | ||
homepage = "https://waycrate.github.io" | ||
description = "Screenshot crate for wlroots based compositors implementing the zwlr_screencopy_v1 protocol." | ||
keywords = ["screenshot", "wayland", "wlroots", "wayshot"] | ||
license = "BSD-2-Clause" | ||
repository = "https://git.sr.ht/~shinyzenith/wayshot" | ||
version = "0.3.2-dev" | ||
edition = "2021" | ||
|
||
[workspace.dependencies] | ||
libwayshot = { version = "0.3.2-dev", path = "./libwayshot" } | ||
tracing = "0.1.37" |
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,19 +1,20 @@ | ||
[package] | ||
authors = ["Shinyzenith <https://aakash.is-a.dev>"] | ||
description = "Screenshot crate for wlroots based compositors implementing the zwlr_screencopy_v1 protocol." | ||
keywords = ["screenshot", "wayland", "wlroots", "wayshot"] | ||
license = "BSD-2-Clause" | ||
repository = "https://git.sr.ht/~shinyzenith/wayshot" | ||
name = "libwayshot" | ||
version = "0.3.1-dev" | ||
edition = "2021" | ||
authors.workspace = true | ||
description.workspace = true | ||
keywords.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
version.workspace = true | ||
edition.workspace = true | ||
|
||
[dependencies] | ||
tracing.workspace = true | ||
image = { version = "0.24", default-features = false } | ||
memmap2 = "0.9.0" | ||
nix = { version = "0.27.1", features = ["fs", "mman"] } | ||
thiserror = "1" | ||
tracing = "0.1.37" | ||
|
||
wayland-client = "0.31.1" | ||
wayland-protocols = { version = "0.31.0", features = ["client", "unstable"] } | ||
wayland-protocols-wlr = { version = "0.2.0", features = ["client"] } |
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