diff --git a/crates/tabby-common/src/index/mod.rs b/crates/tabby-common/src/index/mod.rs index d92798bc2888..6af5cca02724 100644 --- a/crates/tabby-common/src/index/mod.rs +++ b/crates/tabby-common/src/index/mod.rs @@ -82,12 +82,6 @@ pub const FIELD_ATTRIBUTES: &str = "attributes"; pub mod corpus { pub const CODE: &str = "code"; pub const STRUCTURED_DOC: &str = "structured_doc"; - - #[deprecated( - since = "0.20.0", - note = "The web corpus is deprecated and will be removed during the version upgrade." - )] - pub const WEB: &str = "web"; } impl IndexSchema { diff --git a/crates/tabby/src/serve.rs b/crates/tabby/src/serve.rs index b5ca96109d8e..3253888a7493 100644 --- a/crates/tabby/src/serve.rs +++ b/crates/tabby/src/serve.rs @@ -101,11 +101,6 @@ pub struct ServeArgs { #[clap(long, default_value_t = 1)] parallelism: u8, - #[cfg(feature = "ee")] - #[clap(hide = true, long, default_value_t = false)] - #[deprecated(since = "0.11.0", note = "webserver is enabled by default")] - webserver: bool, - #[cfg(feature = "ee")] #[clap(hide = true, long, default_value_t = false)] no_webserver: bool, @@ -118,12 +113,6 @@ pub async fn main(config: &Config, args: &ServeArgs) { let tx = try_run_spinner(); - #[cfg(feature = "ee")] - #[allow(deprecated)] - if args.webserver { - warn!("'--webserver' is enabled by default since 0.11, and will be removed in the next major release. Please remove this flag from your command."); - } - #[allow(unused_assignments)] let mut webserver = None;