diff --git a/Cargo.lock b/Cargo.lock index 53bf5df..401d6c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,10 @@ # It is not intended for manual editing. version = 4 +[[package]] +name = "uv" +version = "2.6.0" + [[package]] name = "uv-shell" -version = "1.0.0" +version = "2.6.0" diff --git a/Cargo.toml b/Cargo.toml index da371c3..2e07178 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,20 @@ -[package] -name = "uv-shell" -version = "1.0.0" +[workspace] +members = ["adds-on"] + +[workspace.package] +version = "2.6.0" edition = "2024" license = "MIT" -description = "Create and activate Python virtual environments with uv" repository = "https://github.com/benbenbang/uv-shell" authors = ["benbenbang "] +[package] +name = "uv-shell" +version.workspace = true +edition.workspace = true +license.workspace = true +description = "Create and activate Python virtual environments with uv" +repository.workspace = true +authors.workspace = true + [dependencies] diff --git a/adds-on/Cargo.toml b/adds-on/Cargo.toml index 680077b..3b634e3 100644 --- a/adds-on/Cargo.toml +++ b/adds-on/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "uv" -version = "0.1.0" -edition = "2024" +version.workspace = true +edition.workspace = true description = "uv wrapper with plugin discovery (uv-xxx → uv xxx)" -license = "MIT" +license.workspace = true [dependencies]