Skip to content

Commit 83d4480

Browse files
cleanup: Use workspace feature to avoid duplicating info
1 parent 1ebbb0a commit 83d4480

File tree

4 files changed

+34
-13
lines changed

4 files changed

+34
-13
lines changed

Cargo.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,13 @@ members = [
66
"cli",
77
"portal",
88
]
9+
10+
[workspace.package]
11+
version = "0.3.0"
12+
edition = "2021"
13+
authors = ["Bilal Elmoussaoui", "Sophie Herold", "Maximiliano Sandoval"]
14+
repository = "https://github.com/bilelmoussaoui/oo7"
15+
homepage = "https://github.com/bilelmoussaoui/oo7"
16+
license = "MIT"
17+
rust-version = "1.66"
18+
exclude = ["org.freedesktop.Secrets.xml"]

cli/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
22
name = "oo7-cli"
3-
version = "0.1.0"
4-
edition = "2021"
3+
authors.workspace = true
4+
edition.workspace = true
5+
exclude.workspace = true
6+
homepage.workspace = true
7+
license.workspace = true
8+
repository.workspace = true
9+
rust-version.workspace = true
10+
version.workspace = true
511

612
[dependencies]
713
tokio = { version = "1.17", features = [ "macros", "rt-multi-thread" ] }

client/Cargo.toml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
[package]
22
name = "oo7"
3-
version = "0.3.0"
4-
edition = "2021"
5-
authors = ["Bilal Elmoussaoui", "Sophie Herold", "Maximiliano Sandoval"]
63
description = "James Bond went on a new mission and this time as a Secret Service provider"
7-
repository = "https://github.com/bilelmoussaoui/oo7"
8-
homepage = "https://github.com/bilelmoussaoui/oo7"
94
keywords = ["keyring", "secret", "service", "portal", "keychain"]
10-
exclude = ["org.freedesktop.Secrets.xml"]
115
categories = ["os::linux-apis", "os", "api-bindings"]
12-
license = "MIT"
13-
rust-version = "1.66"
6+
authors.workspace = true
7+
edition.workspace = true
8+
exclude.workspace = true
9+
homepage.workspace = true
10+
license.workspace = true
11+
repository.workspace = true
12+
rust-version.workspace = true
13+
version.workspace = true
1414

1515
[dependencies]
16-
1716
zbus = { version = "3.5.0", default-features = false, features = ["gvariant"] }
1817
serde = "1.0"
1918
futures-lite = { version = "2.1", optional = true }

portal/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[package]
22
name = "oo7-portal"
3-
version = "0.1.0"
4-
edition = "2021"
3+
authors.workspace = true
4+
edition.workspace = true
5+
exclude.workspace = true
6+
homepage.workspace = true
7+
license.workspace = true
8+
repository.workspace = true
9+
rust-version.workspace = true
10+
version.workspace = true
511

612
[dependencies]
713
futures-channel = "0.3"

0 commit comments

Comments
 (0)