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] [workspace.dependencies]
djls = { path = "crates/djls" } djls = { path = "crates/djls" }
djls-pyenv = { path = "crates/djls-pyenv" } djls-python = { path = "crates/djls-python" }
anyhow = "1.0.94" anyhow = "1.0.94"
pyo3 = { version = "0.23.3", features = ["auto-initialize", "abi3-py39"] } pyo3 = { version = "0.23.3", features = ["auto-initialize", "abi3-py39"] }

View file

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

View file

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
djls-pyenv = { workspace = true } djls-python = { workspace = true }
anyhow = { workspace = true } anyhow = { workspace = true }
pyo3 = { 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::lsp_types::*;
use tower_lsp::{Client, LanguageServer, LspService, Server}; use tower_lsp::{Client, LanguageServer, LspService, Server};
use djls_pyenv::PythonEnvironment; use djls_python::PythonEnvironment;
#[derive(Debug)] #[derive(Debug)]
struct Backend { struct Backend {