-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminimal.a2ml
More file actions
38 lines (33 loc) · 1019 Bytes
/
Copy pathminimal.a2ml
File metadata and controls
38 lines (33 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# SPDX-License-Identifier: MPL-2.0
# SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
#
# META.a2ml — Minimal Example
# minimal-project
#
# This is the current (A2ML) format for META checkpoint files.
# The legacy Guile Scheme (.scm) format is deprecated; see minimal.scm for reference.
[metadata]
version = "0.1.0"
last-updated = "2026-04-12"
[project-info]
name = "minimal-project"
type = "library"
languages = ["rust"]
license = "PMPL-1.0-or-later"
author = "Jonathan D.A. Jewell"
# Architecture Decisions (ADRs)
# Status values: proposed | accepted | deprecated | superseded | rejected
[[architecture-decisions]]
id = "ADR-001"
title = "Initial Project Setup"
status = "accepted"
date = "2025-01-01"
context = "Need to establish project foundation"
decision = "Use standard project structure with just-based build system"
consequences = [
"Familiar layout for contributors",
"Works with standard tooling",
]
[development-practices]
build-tool = "just"
package-manager = "guix"