Skip to content

Commit 6a9c270

Browse files
committed
Use single source of truth for version information
Signed-off-by: Guvenc Gulce <guevenc.guelce@sap.com>
1 parent 8f4d6f7 commit 6a9c270

File tree

9 files changed

+25
-23
lines changed

9 files changed

+25
-23
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ members = [
1010
]
1111
resolver = "2"
1212

13+
[workspace.package]
14+
version = "0.2.1"
15+
edition = "2021"
16+
1317
[workspace.dependencies]
1418
tokio = { version = "1.36.0", features = ["full"] }
1519
tokio-stream = { version = "0.1.15", features = ["net"] }

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "feos-cli"
3-
version = "0.2.0"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
55
description = "A gRPC CLI for the FeOS control plane"
66

77
[dependencies]

feos/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "feos"
3-
version = "0.2.0"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
55

66
[[bin]]
77
name = "feos"

feos/proto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "feos-proto"
3-
version = "0.2.0"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
55

66
[lib]
77
path = "src/lib.rs"

feos/services/host-service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "host-service"
3-
version = "0.2.0"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
55

66
[dependencies]
77
feos-utils = { path = "../../utils" }

feos/services/image-service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "image-service"
3-
version = "0.2.0"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
55

66
[dependencies]
77
feos-proto = { workspace = true }

feos/services/vm-service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "vm-service"
3-
version = "0.2.0"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
55

66
[dependencies]
77
feos-proto = { workspace = true }

feos/utils/Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
[package]
22
name = "feos-utils"
3-
version = "0.2.0"
4-
edition = "2021"
3+
version.workspace = true
4+
edition.workspace = true
55

66
[dependencies]
7-
# Add any dependencies that the utils modules themselves need.
8-
# Looking at your files, you'll need:
97
log = { workspace = true }
108
nix = { workspace = true }
119
chrono = { workspace = true }

0 commit comments

Comments
 (0)