Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ members = [
"crates/my-cli", # Command-line interface (my binary)
"crates/my-hir",
"crates/my-mir",
"crates/my-qtt", # QTT verified-core checker (faithful port of Coq R5 check / R5b aff_type_dec)
"crates/my-llvm", # LLVM code generation
"crates/my-lsp",
"crates/my-pkg",
Expand Down Expand Up @@ -33,6 +34,7 @@ repository = "https://github.com/hyperpolymath/my-lang"
my-lang = { path = "crates/my-lang" }
my-hir = { path = "crates/my-hir" }
my-mir = { path = "crates/my-mir" }
my-qtt = { path = "crates/my-qtt" }
my-llvm = { path = "crates/my-llvm" }
my-ai = { path = "crates/my-ai" }

Expand Down
12 changes: 12 additions & 0 deletions crates/my-qtt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# SPDX-License-Identifier: MPL-2.0
# SPDX-FileCopyrightText: 2026 Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk>
[package]
name = "my-qtt"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
description = "QTT verified-core checker for my-lang: a faithful Rust port of the machine-checked Coq usage-walk synthesiser (SoloCore.v R5 `check` / R5b `aff_type_dec`)."

[dependencies]
Loading
Loading