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
44 changes: 22 additions & 22 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,21 +114,21 @@ which = "7.0.2"

# Rattler crates
file_url = "0.2.3"
rattler = { version = "0.33.0", default-features = false }
rattler_cache = { version = "0.3.14", default-features = false }
rattler_conda_types = { version = "0.31.4", default-features = false, features = [
rattler = { version = "0.33.1", default-features = false }
rattler_cache = { version = "0.3.15", default-features = false }
rattler_conda_types = { version = "0.31.5", default-features = false, features = [
"rayon",
] }
rattler_digest = { version = "1.0.8", default-features = false }
rattler_lock = { version = "0.22.47", default-features = false }
rattler_menuinst = { version = "0.2.3", default-features = false }
rattler_networking = { version = "0.22.9", default-features = false, features = [
rattler_lock = { version = "0.22.48", default-features = false }
rattler_menuinst = { version = "0.2.4", default-features = false }
rattler_networking = { version = "0.22.10", default-features = false, features = [
"google-cloud-auth",
] }
rattler_repodata_gateway = { version = "0.22.1", default-features = false }
rattler_shell = { version = "0.22.23", default-features = false }
rattler_solve = { version = "1.4.1", default-features = false }
rattler_virtual_packages = { version = "2.0.6", default-features = false }
rattler_repodata_gateway = { version = "0.22.2", default-features = false }
rattler_shell = { version = "0.22.24", default-features = false }
rattler_solve = { version = "1.4.2", default-features = false }
rattler_virtual_packages = { version = "2.0.8", default-features = false }

# Bumping this to a higher version breaks the Windows path handling.
url = "2.5.4"
Expand Down
1 change: 1 addition & 0 deletions docs/reference/cli/pixi/global.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pixi global <COMMAND>
| [`list`](global/list.md) | Lists all packages previously installed into a globally accessible location via `pixi global install`. |
| [`sync`](global/sync.md) | Sync global manifest with installed environments |
| [`expose`](global/expose.md) | Interact with the exposure of binaries in the global environment |
| [`shortcut`](global/shortcut.md) | Interact with the shortcuts on your machine |
| [`update`](global/update.md) | Updates environments in the global environment |


Expand Down
2 changes: 1 addition & 1 deletion docs/reference/cli/pixi/global/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pixi global install [OPTIONS] <PACKAGE>...
<br>May be provided more than once.
- <a id="arg---force-reinstall" href="#arg---force-reinstall">`--force-reinstall`</a>
: Specifies that the environment should be reinstalled
- <a id="arg---no-shortcut" href="#arg---no-shortcut">`--no-shortcut`</a>
- <a id="arg---no-shortcuts" href="#arg---no-shortcuts">`--no-shortcuts`</a>
: Specifies that no shortcuts should be created for the installed packages

## Config Options
Expand Down
21 changes: 21 additions & 0 deletions docs/reference/cli/pixi/global/shortcut.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<!--- This file is autogenerated. Do not edit manually! -->
# <code>[pixi](../../pixi.md) [global](../global.md) shortcut</code>

## About
Interact with the shortcuts on your machine

--8<-- "docs/reference/cli/pixi/global/shortcut_extender.md:description"

## Usage
```
pixi global shortcut <COMMAND>
```

## Subcommands
| Command | Description |
|---------|-------------|
| [`add`](shortcut/add.md) | Add a shortcut from an environment to your machine. |
| [`remove`](shortcut/remove.md) | Remove shortcuts from your machine |


--8<-- "docs/reference/cli/pixi/global/shortcut_extender.md:example"
37 changes: 37 additions & 0 deletions docs/reference/cli/pixi/global/shortcut/add.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!--- This file is autogenerated. Do not edit manually! -->
# <code>[pixi](../../../pixi.md) [global](../../global.md) [shortcut](../shortcut.md) add</code>

## About
Add a shortcut from an environment to your machine.

--8<-- "docs/reference/cli/pixi/global/shortcut/add_extender.md:description"

## Usage
```
pixi global shortcut add [OPTIONS] --environment <ENVIRONMENT> [PACKAGE]...
```

## Arguments
- <a id="arg-<PACKAGE>" href="#arg-<PACKAGE>">`<PACKAGE>`</a>
: The package name to add the shortcuts from
<br>May be provided more than once.

## Options
- <a id="arg---environment" href="#arg---environment">`--environment (-e) <ENVIRONMENT>`</a>
: The environment from which the shortcut should be added
<br>**required**: `true`

## Config Options
- <a id="arg---tls-no-verify" href="#arg---tls-no-verify">`--tls-no-verify`</a>
: Do not verify the TLS certificate of the server
- <a id="arg---auth-file" href="#arg---auth-file">`--auth-file <AUTH_FILE>`</a>
: Path to the file containing the authentication token
- <a id="arg---pypi-keyring-provider" href="#arg---pypi-keyring-provider">`--pypi-keyring-provider <PYPI_KEYRING_PROVIDER>`</a>
: Specifies whether to use the keyring to look up credentials for PyPI
<br>**options**: `disabled`, `subprocess`
- <a id="arg---concurrent-solves" href="#arg---concurrent-solves">`--concurrent-solves <CONCURRENT_SOLVES>`</a>
: Max concurrent solves, default is the number of CPUs
- <a id="arg---concurrent-downloads" href="#arg---concurrent-downloads">`--concurrent-downloads <CONCURRENT_DOWNLOADS>`</a>
: Max concurrent network requests, default is `50`

--8<-- "docs/reference/cli/pixi/global/shortcut/add_extender.md:example"
32 changes: 32 additions & 0 deletions docs/reference/cli/pixi/global/shortcut/remove.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!--- This file is autogenerated. Do not edit manually! -->
# <code>[pixi](../../../pixi.md) [global](../../global.md) [shortcut](../shortcut.md) remove</code>

## About
Remove shortcuts from your machine

--8<-- "docs/reference/cli/pixi/global/shortcut/remove_extender.md:description"

## Usage
```
pixi global shortcut remove [OPTIONS] [SHORTCUT]...
```

## Arguments
- <a id="arg-<SHORTCUT>" href="#arg-<SHORTCUT>">`<SHORTCUT>`</a>
: The shortcut that should be removed
<br>May be provided more than once.

## Config Options
- <a id="arg---tls-no-verify" href="#arg---tls-no-verify">`--tls-no-verify`</a>
: Do not verify the TLS certificate of the server
- <a id="arg---auth-file" href="#arg---auth-file">`--auth-file <AUTH_FILE>`</a>
: Path to the file containing the authentication token
- <a id="arg---pypi-keyring-provider" href="#arg---pypi-keyring-provider">`--pypi-keyring-provider <PYPI_KEYRING_PROVIDER>`</a>
: Specifies whether to use the keyring to look up credentials for PyPI
<br>**options**: `disabled`, `subprocess`
- <a id="arg---concurrent-solves" href="#arg---concurrent-solves">`--concurrent-solves <CONCURRENT_SOLVES>`</a>
: Max concurrent solves, default is the number of CPUs
- <a id="arg---concurrent-downloads" href="#arg---concurrent-downloads">`--concurrent-downloads <CONCURRENT_DOWNLOADS>`</a>
: Max concurrent network requests, default is `50`

--8<-- "docs/reference/cli/pixi/global/shortcut/remove_extender.md:example"
Loading
Loading