From fa0261e3add8ad16671f62a5ff31140c793c8a43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos?= Date: Thu, 6 Feb 2025 00:58:21 -0300 Subject: [PATCH] Add more info to `CONTRIBUTING.md` (#24348) mention the crates: - `cli` - `zed` and add a section for packaging Zed, which links to our website docs Release Notes: - N/A --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4a0a632413..6cd18ce421 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,3 +52,9 @@ Zed is made up of several smaller crates - let's go over those you're most likel - [`rpc`](/crates/rpc) defines messages to be exchanged with collaboration server. - [`theme`](/crates/theme) defines the theme system and provides a default theme. - [`ui`](/crates/ui) is a collection of UI components and common patterns used throughout Zed. +- [`cli`](/crates/cli) is the CLI crate which invokes the Zed binary. +- [`zed`](/crates/zed) is where all things come together, and the `main` entry point for Zed. + +## Packaging Zed + +Check our [notes for packaging Zed](https://zed.dev/docs/development/linux#notes-for-packaging-zed).