extension: Reorganize capabilities (#35143)

This PR reorganizes the capabilities within the `extension` crate to
make it easier to add more.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-07-26 18:05:22 -04:00 committed by GitHub
parent 6a9a539b10
commit 2a0170dc3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 259 additions and 165 deletions

View file

@ -1,3 +1,4 @@
mod capabilities;
pub mod extension_builder;
mod extension_events;
mod extension_host_proxy;
@ -16,6 +17,7 @@ use language::LanguageName;
use semantic_version::SemanticVersion;
use task::{SpawnInTerminal, ZedDebugConfig};
pub use crate::capabilities::*;
pub use crate::extension_events::*;
pub use crate::extension_host_proxy::*;
pub use crate::extension_manifest::*;