Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Cargo.lock

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

18 changes: 14 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <bn@bitbrew.dev>"]

[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]
6 changes: 3 additions & 3 deletions adds-on/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Loading