dissolve-python 0.3.0

A tool to dissolve deprecated calls in Python codebases
Documentation
// Copyright (C) 2024 Jelmer Vernooij <jelmer@samba.org>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

pub mod ast_transformer;
mod ast_utils;
pub mod ast_visitor;
pub mod builder;
pub mod checker;
pub mod config;
pub mod core;
pub mod dependency_collector;
pub mod domain_types;
pub mod error;
pub mod function_refactoring;
pub mod migrate_stub;
pub use migrate_stub as migrate_ruff; // Temporary alias until migration is complete
pub mod mypy_lsp;
pub mod optimizations;
pub mod optimized_visitor;
pub mod performance;
pub mod pyright_lsp;
pub mod remover;
pub mod ruff_parser;
pub mod rustpython_visitor;
pub mod scanner;
pub mod stub_collector; // Temporary stub
#[cfg(test)]
pub mod test_isolation;
pub mod type_introspection_context;
pub mod types;
pub mod unified_visitor;

pub mod concurrent_lsp;

pub use checker::CheckResult;
pub use core::*;
pub use dependency_collector::{
    collect_deprecated_from_dependencies, collect_deprecated_from_dependencies_with_paths,
};
pub use migrate_stub::check_file;
pub use remover::remove_from_file;
pub use scanner::*;
pub use stub_collector::RuffDeprecatedFunctionCollector; // Temporary export
pub use types::{TypeIntrospectionMethod, UserResponse};

// ConcurrentTypeIntrospectionContext is no longer needed - we use sync concurrent client in tests

#[cfg(test)]
mod tests;

#[cfg(test)]
mod test_import_tracking;

#[cfg(test)]
pub mod test_utils;

#[cfg(test)]
mod test_setup;