huak icon indicating copy to clipboard operation
huak copied to clipboard

[wip] A Python package manager written in Rust and inspired by Cargo.

Results 74 huak issues
Sort by recently updated
recently updated
newest added

```toml [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "temp-app" version = "0.0.1" description = "" dependencies = [] [project.scripts] temp-app = "temp_app.main:main" ```

enhancement

Can add Cargo's `check` to `huak`.

- #718 As a first pass [Huak's toolchain](https://github.com/cnpryer/huak/blob/master/dev-resources/planning.md#huaks-toolchain) implements the following CI ``` huak toolchain update # Update the current toolchain tools huak toolchain install # Install a toolchain via...

Probably just use PyPA's [installer](https://github.com/pypa/installer) or Prefix.dev's [`rip`](https://github.com/prefix-dev/rip). Related: - #482

enhancement

- [ ] `insta-cmd` (#688) - [ ] Configuring `insta-cmd` (outputs and filters) - [ ] Mocking for environments and resources - [ ] Improving coverage Related: - #771

This list is a work-in-progress: - Optimizing `AsRef` vs `Into` usage

## Discussion It would be good to have a clear mental map/documentation on how Huak handles errors and logging. Since these are 2 things that are ubiquitous throughtout Huak, I...

All the struct implements right now is naive release data that expects vec![major,minor,micro/patch], doing things like defaulting to 0 for each if not provided. In general the struct has little...

good first issue

## `huak audit` Run `huak audit` to scan for packages in your project's virtual environment with known vulnerabilities.

``` ❯ huak run python -c "import sys; print(sys.executable)" File "", line 1 import ^ SyntaxError: invalid syntax zsh:1: unknown file attribute: y ``` The implementation is pretty raw, so...

good first issue