rename crate

This commit is contained in:
Josh Thomas 2024-12-05 11:00:38 -06:00
parent 60609c34bd
commit bedd3c7dac
7 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ resolver = "2"
[workspace.dependencies]
djls = { path = "crates/djls" }
djls-pyenv = { path = "crates/djls-pyenv" }
djls-python = { path = "crates/djls-python" }
anyhow = "1.0.94"
pyo3 = { version = "0.23.3", features = ["auto-initialize", "abi3-py39"] }

View file

@ -1,5 +1,5 @@
[package]
name = "djls-pyenv"
name = "djls-python"
version = "0.0.0"
edition = "2021"

View file

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
[dependencies]
djls-pyenv = { workspace = true }
djls-python = { workspace = true }
anyhow = { workspace = true }
pyo3 = { workspace = true }

View file

@ -3,7 +3,7 @@ use tower_lsp::jsonrpc::Result as LspResult;
use tower_lsp::lsp_types::*;
use tower_lsp::{Client, LanguageServer, LspService, Server};
use djls_pyenv::PythonEnvironment;
use djls_python::PythonEnvironment;
#[derive(Debug)]
struct Backend {