diff --git a/Cargo.lock b/Cargo.lock index 6f15179..1e1d994 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -117,7 +117,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "i3" -version = "0.1.0" +version = "0.2.0" dependencies = [ "serde", "serde_json", @@ -177,7 +177,7 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "screencfg" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "i3", @@ -374,4 +374,4 @@ dependencies = [ [[package]] name = "xrandr" -version = "0.1.0" +version = "0.2.0" diff --git a/Cargo.toml b/Cargo.toml index 604a8ec..b6ab9b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "screencfg" +version.workspace = true +edition.workspace = true description = "Automatically configure your screen setup with i3" -version = "0.1.0" -edition = "2021" repository = "https://github.com/hakoerber/screencfg/" authors = ["Hannes Körber "] rust-version = "1.74.1" @@ -11,6 +11,14 @@ license-file = "LICENSE" keywords = ["i3", "xrandr"] categories = ["command-line-utilities"] +[workspace] +resolver = "2" +members = ["i3", "xrandr"] + +[workspace.package] +version = "0.2.0" +edition = "2021" + [dependencies] clap = { version = "4.*", default-features = false, features = [ "std", @@ -31,10 +39,6 @@ full = [ "clap/error-context", ] -[workspace] -resolver = "2" -members = ["i3", "xrandr"] - [profile.release] opt-level = 3 debug = false diff --git a/i3/Cargo.toml b/i3/Cargo.toml index 1ac2ae3..33bf4fe 100644 --- a/i3/Cargo.toml +++ b/i3/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "i3" -version = "0.1.0" -edition = "2021" +version.workspace = true +edition.workspace = true [dependencies] serde = { version = "1.*", default-features = false, features = ["derive"] } diff --git a/xrandr/Cargo.toml b/xrandr/Cargo.toml index c4e826c..8936a05 100644 --- a/xrandr/Cargo.toml +++ b/xrandr/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "xrandr" -version = "0.1.0" -edition = "2021" +version.workspace = true +edition.workspace = true [dependencies]