gam

(★ 35)

No description available.

File Explorer

Showing a partial file list — download the zip above to see everything.

  • .gitignore
  • .readthedocs.yaml
  • build.rs
  • build.sh
  • Cargo.lock
  • Cargo.toml
  • CHANGELOG-ARCHIVE.md
  • CHANGELOG.md
  • install.sh
  • LICENSE
  • mkdocs.yml
  • pyproject.toml
  • README.md
  • README_PYPI.md
  • rust-toolchain.toml
  • SPEC.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Showing a partial file list.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

alr

View Details ▼

Ada package manager.
Manage Ada toolchains, dependencies, tools, and libraries.

alr init {{--bin|--lib}} {{project_name}}

Create a binary or library project:

alr add {{crate}}

Add a dependency to the project:

alr run

Run the compiled binary (no need to do `build` before):

🔍

cargo build

View Details ▼

Compile a local package and all of its dependencies.

cargo {{[b|build]}}

Build the package or packages defined by the `Cargo.toml` manifest file in the local path:

cargo {{[b|build]}} {{[-r|--release]}}

Build artifacts in release mode, with optimizations:

cargo {{[b|build]}} --locked

Require that `Cargo.lock` is up to date:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

uv add

View Details ▼

Add package dependencies to the `pyproject.toml` file.
Packages are specified according to <https://peps.python.org/pep-0508/>.

uv add {{package}}

Add the latest version of a package:

uv add {{package1 package2 ...}}

Add multiple packages:

uv add {{package>=1.2.3}}

Add a package with a version requirement:

# Project Badges

// repository documentation