Skip to content

Commit

Permalink
use version from workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
mpwsh committed Oct 28, 2024
1 parent 18a59d4 commit 876a140
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.1.1"
authors = ["mpw <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/mpwsh/kubetailor"
readme = "README.md"
keywords = ["kubernetes", "controller", "runtime", "cncf"]

[profile.release]
opt-level = 3
lto = "thin"
Expand Down
10 changes: 7 additions & 3 deletions crates/console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "console"
version = "0.1.1"
edition = "2021"
authors = ["mpw <[email protected]>"]
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
keywords.workspace = true

[dependencies]
actix-web = "4.4.1"
Expand Down
11 changes: 9 additions & 2 deletions crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
[package]
name = "kubetailor"
version = "0.1.0"
edition = "2021"

version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
keywords.workspace = true


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
14 changes: 7 additions & 7 deletions crates/operator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "operator"
version = "0.1.0"
authors = ["mpw <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/mpwsh/kubetailor"
readme = "README.md"
keywords = ["kubernetes", "controller", "runtime", "cncf"]
default-run = "operator"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
keywords.workspace = true

[dependencies]
tokio = { version = "1.35", features = [
Expand Down
9 changes: 7 additions & 2 deletions crates/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
[package]
name = "server"
version = "0.1.0"
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
keywords.workspace = true

[dependencies]
kubetailor = { version = "0.1", path = "../lib" }
Expand Down

0 comments on commit 876a140

Please sign in to comment.