perl-workspace 0.13.3

Workspace file discovery, indexing, and observability for Perl
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! LSP feature module (deprecated)
//!
//! **DEPRECATED**: This module has moved to the `perl-lsp` crate.
//!
//! For backwards compatibility during the migration period, this module
//! is kept as an empty stub. Migrate to `perl_lsp::features::workspace_rename`.
//!
//! # Migration
//!
//! ```ignore
//! // Old:
//! use perl_parser::workspace_rename;
//!
//! // New:
//! use perl_lsp::features::workspace_rename;
//! ```