Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9365233
refactor!: prepare for Rust-rewrite
ken-matsui May 8, 2026
56c5503
chore: bootstrap repository metadata
ken-matsui May 12, 2026
7f55a15
feat(core): add platform option models
ken-matsui May 12, 2026
3ee03c3
ci: check Rust workspace
ken-matsui May 12, 2026
5f230d9
feat(core): add compiler profile models
ken-matsui May 12, 2026
20701b7
feat(core): add package configuration model
ken-matsui May 17, 2026
ceaf5a7
feat(runtime): add diagnostics and environment contracts
ken-matsui May 12, 2026
b6ac06d
feat(manifest): parse package manifests
ken-matsui May 12, 2026
f192d49
feat(package): package and publish local archives
ken-matsui May 12, 2026
4267e8e
feat(resolve): load indexes and select versions
ken-matsui May 12, 2026
813aff5
feat(fetch): lock and fetch source archives
ken-matsui May 12, 2026
cd879ab
feat(toolchain): resolve C++ tools
ken-matsui May 12, 2026
536c486
feat(config): load layered config files
ken-matsui May 12, 2026
660b9a0
feat(workspace): select workspace packages
ken-matsui May 12, 2026
5ffb09d
feat(feature): resolve package features
ken-matsui May 12, 2026
d2a0617
feat(vendor): materialize offline registries
ken-matsui May 12, 2026
1dec916
feat(build): plan C and C++ builds
ken-matsui May 12, 2026
1978628
feat(ninja): write build outputs
ken-matsui May 12, 2026
6c6b971
feat(test): run tests with local probes
ken-matsui May 12, 2026
40cbb96
feat(devtools): run source tooling
ken-matsui May 8, 2026
cf4ce36
feat(explain): render dependency explanations
ken-matsui May 12, 2026
655cdf0
docs(architecture): describe crate boundaries
ken-matsui May 12, 2026
a838eff
feat(cli): define cabin command-line interface
ken-matsui May 12, 2026
991d00e
test(cli): cover the cabin command surface
ken-matsui May 12, 2026
38744bf
docs(readme): describe project scope
ken-matsui May 12, 2026
d3c6a85
ci: check docs and container
ken-matsui May 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 0 additions & 9 deletions .clang-format

This file was deleted.

53 changes: 0 additions & 53 deletions .clang-tidy

This file was deleted.

28 changes: 0 additions & 28 deletions .devcontainer/devcontainer.json

This file was deleted.

6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
target/
build/
.git/
dist/
vendor/
repomix-output.xml
3 changes: 0 additions & 3 deletions .github/actionlint.yaml

This file was deleted.

56 changes: 0 additions & 56 deletions .github/actions/build-and-test/action.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/actions/setup-llvm/action.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/actions/setup-macos-deps/action.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/actions/setup-ubuntu-deps/action.yml

This file was deleted.

9 changes: 4 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ updates:
schedule:
interval: monthly
commit-message:
prefix: "fix"
prefix-development: "chore"
prefix: "ci"
include: "scope"
- package-ecosystem: "devcontainers"

- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: monthly
commit-message:
prefix: "fix"
prefix-development: "chore"
prefix: "chore"
include: "scope"
8 changes: 0 additions & 8 deletions .github/pull_request_template.md

This file was deleted.

17 changes: 0 additions & 17 deletions .github/release-header.md

This file was deleted.

18 changes: 0 additions & 18 deletions .github/release-please-config.json

This file was deleted.

3 changes: 0 additions & 3 deletions .github/release-please-manifest.json

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Auto Release

on:
push:
tags:
- '*'

permissions:
contents: write

jobs:
auto-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Release
uses: softprops/action-gh-release@v2
with:
draft: false
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
85 changes: 0 additions & 85 deletions .github/workflows/codeql.yml

This file was deleted.

Loading
Loading