eb81856565
Ship QUALITY_PLAN sessions 31–33: fetchable package index URLs, showcase app and micro/nexus benchmarks, and debugger-friendly C codegen. - Registry: BUX_REGISTRY accepts http(s) URLs (curl/wget → ~/.bux/cache) - E.2: make test-apps smoke for nexus/boko/simpledb/jwt-pitbul - E.5: benches/micro + C/Nim/Zig twins; make bench-nexus (wrk) - E.4: HIR locs → #line .bux; default -O0 -g; --release -O2; make test-dwarf
25 lines
872 B
TOML
25 lines
872 B
TOML
# Bux package registry index (E.1 + HTTP URL)
|
|
# Used by `bux add <name>` and `bux install` when no --path/--git is given.
|
|
#
|
|
# Override with: export BUX_REGISTRY=/path/to/registry.toml
|
|
# or: export BUX_REGISTRY=https://example.com/registry.toml
|
|
# Or copy to: ~/.bux/registry.toml
|
|
# Force HTTP re-fetch: BUX_REGISTRY_REFRESH=1
|
|
#
|
|
# source forms:
|
|
# file:relative/or/absolute — local package (relative to this file)
|
|
# path:relative/or/absolute — same as file:
|
|
# https://...git — git clone into ~/.bux/packages/<name>
|
|
|
|
[[package]]
|
|
name = "greet"
|
|
version = "0.1.0"
|
|
source = "file:../registry/packages/greet"
|
|
description = "Tiny Hello helper library (demo registry package)"
|
|
|
|
[[package]]
|
|
name = "greet"
|
|
version = "0.1.1"
|
|
source = "file:../registry/packages/greet"
|
|
description = "Tiny Hello helper library (demo registry package, patch)"
|