Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

Add notes on re-building schema_capnp.rs to CONTRIBUTING.md

closes #1469

+13
+13
CONTRIBUTING.md
··· 101 101 ```shell 102 102 rustup upgrade stable 103 103 ``` 104 + 105 + ## Cap'n Proto schema 106 + 107 + The compiler uses a Cap'n Proto schema to serialize/deserialize module information. 108 + Occasionally, the schema needs to change. After modifying `compiler-core/schema.capnp` 109 + you need to to re-generate `compiler-core/generated/schema_capnp.rs`. To do that, 110 + [install Cap'n Proto](https://capnproto.org/install.html) and un-comment appropriate lines 111 + in `compiler-core/build.rs`. Then you should be able to re-generate that file with: 112 + 113 + ```shell 114 + cd compiler-core 115 + cargo build 116 + ```