-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #330 from rkuklik/main
Improve cargo workspace
- Loading branch information
Showing
34 changed files
with
131 additions
and
97 deletions.
There are no files selected for viewing
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
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
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
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,41 @@ | ||
[package] | ||
name = "swww" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license-file.workspace = true | ||
|
||
[lints] | ||
workspace = true | ||
|
||
[dependencies] | ||
image = { version = "0.25", default-features = false, features = [ | ||
# all formats, except avif, since avif compiles just rav1d, which is just an | ||
# encoder, which we do not care about | ||
"bmp", | ||
"dds", | ||
"exr", | ||
"ff", | ||
"gif", | ||
"hdr", | ||
"ico", | ||
"jpeg", | ||
"png", | ||
"pnm", | ||
"qoi", | ||
"tga", | ||
"tiff", | ||
"webp", | ||
] } | ||
fast_image_resize = "4.0" | ||
clap = { version = "4.5", features = ["derive", "wrap_help", "env"] } | ||
fastrand = { version = "2.1", default-features = false, features = ["std"] } | ||
common = { workspace = true } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "2.0" | ||
|
||
[build-dependencies] | ||
clap = { version = "4.5", features = ["derive", "env"] } | ||
clap_complete = "4.5" |
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
File renamed without changes.
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
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
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,26 @@ | ||
[package] | ||
name = "swww-daemon" | ||
version = "0.9.5-masterV2" | ||
authors = ["Leonardo Gibrowski Faé <leonardo.fae44@gmail.com>"] | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license-file.workspace = true | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[lints] | ||
workspace = true | ||
|
||
[dependencies] | ||
log = { version = "0.4", default_features = false, features = [ "max_level_debug", "release_max_level_info", "std" ] } | ||
log = { version = "0.4", default-features = false, features = [ | ||
"max_level_debug", | ||
"release_max_level_info", | ||
"std", | ||
] } | ||
|
||
rustix = { version = "0.38", default-features = false, features = [ "event" ] } | ||
rustix = { version = "0.38", default-features = false, features = ["event"] } | ||
libc = "0.2" | ||
|
||
keyframe = "1.1" | ||
|
||
sd-notify = { version = "0.4.1" } | ||
|
||
utils = { version = "0.9.5-masterV2", path = "../utils" } | ||
common = { workspace = true } |
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
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
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,4 +1,4 @@ | ||
use utils::ipc::PixelFormat; | ||
use common::ipc::PixelFormat; | ||
|
||
pub struct Cli { | ||
pub format: Option<PixelFormat>, | ||
|
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
Oops, something went wrong.