···9898rustup upgrade stable
9999```
100100101101-## Cap'n Proto schema
102102-103103-The compiler uses a Cap'n Proto schema to serialize/deserialize module information.
104104-Occasionally, the schema needs to change. After modifying `compiler-core/schema.capnp`
105105-you need to re-generate `compiler-core/generated/schema_capnp.rs`. To do that,
106106-[install Cap'n Proto](https://capnproto.org/install.html) and un-comment appropriate lines
107107-in `compiler-core/build.rs`. Then you should be able to re-generate that file with:
108108-109109-```sh
110110-cd compiler-core
111111-cargo build
112112-```
113113-114101## Operating system specific code
115102116103This project is used on FreeBSD, Linux, MacOS, OpenBSD, Windows, and presumably
···53535454.PHONY: test-watch
5555test-watch: ## Run compiler tests when files change
5656- watchexec -e rs,toml,gleam,html,capnp "cargo test --quiet"
5656+ watchexec -e rs,toml,gleam,html "cargo test --quiet"
57575858.PHONY: export-hex-tarball-test
5959export-hex-tarball-test: ## Run `gleam export hex-tarball` and verify it is created