Julia package registry for Asterisk Labs.
using Pkg
Pkg.Registry.add(RegistrySpec(url = "https://github.com/asterisk-labs/AsteriskRegistry"))Once added, packages from this registry can be installed with Pkg.add like any other Julia package.
| Package | Description | Source |
|---|---|---|
Cozip |
Julia bindings for libcozip, a writer for the Cloud-Optimized ZIP (cozip) format |
asterisk-labs/taco |
Precompiled native binaries for libcozip are distributed via Cozip_jll using Artifacts.toml with SHA256 verification.
pkg> add Cozipjulia> using Cozip
julia> Cozip.cozip_version()
"2026.5.2"New versions are registered with LocalRegistry.jl from the source monorepo.
From the monorepo root:
using Pkg
Pkg.develop(path = abspath("cozip/julia"))
using LocalRegistry
register("Cozip"; registry = "AsteriskRegistry", push = true)push = true commits to ~/.julia/registries/AsteriskRegistry and pushes to GitHub automatically. If the push fails due to credentials:
cd ~/.julia/registries/AsteriskRegistry
git pushAfter registration, verify that C/Cozip/{Package,Versions,Deps,Compat}.toml and the updated entry in the root Registry.toml are present in this repo.
MIT