gitextract_w5tkx20i/ ├── .editorconfig ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── README.future.md ├── README.md ├── iris-notes.md ├── justfile ├── lab.ll ├── mg_examples/ │ └── main.mg ├── notes/ │ ├── 2019-popl-iron-final.md │ ├── assembly-proofs.md │ ├── category-theory-for-programmers.md │ ├── coq-coq-correct.md │ ├── coq-metacoq.md │ ├── indexing-foundational-proof-carrying-code.md │ ├── indexing-indexed-model.md │ ├── indexing-modal-model.md │ ├── iris-from-the-ground-up.md │ ├── iris-lecture-notes.md │ ├── jung-thesis.md │ ├── known_types.md │ ├── pony-reference-capabilities.md │ ├── tarjan/ │ │ ├── README.md │ │ ├── _CoqProject │ │ ├── extra_nocolors.v │ │ └── tarjan_nocolors.v │ └── tarjan.md ├── notes.md ├── old/ │ ├── checker.rs │ ├── inductive_serde.v │ ├── machine.md │ ├── machine.v │ ├── main.md │ ├── main.v │ └── parser_low.rs ├── posts/ │ ├── approachable-language-design.md │ ├── comparisons-with-other-projects.md │ ├── coq-for-engineers.md │ ├── crossing-no-mans-land.md │ ├── design-of-magmide.md │ ├── intro-verification-logic-in-magmide.md │ ├── iris-in-plain-terms.md │ ├── toward-termination-vcgen.md │ └── what-is-magmide.md ├── src/ │ ├── ast.rs │ ├── checker.rs │ ├── lib.rs │ ├── main.rs │ ├── old.md │ └── parser.rs └── theory/ ├── _CoqProject ├── list_assertions.v ├── main.v ├── playground.v └── utils.v