Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use serde::{Deserialize, Serialize}; 2 3#[derive(Serialize, Deserialize)] 4pub struct ExtensionApiManifest { 5 pub name: String, 6 pub version: String, 7 pub description: Option<String>, 8 pub authors: Vec<String>, 9 pub repository: String, 10}