mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-15 14:56:09 +00:00
rename crate
This commit is contained in:
parent
60609c34bd
commit
bedd3c7dac
7 changed files with 4 additions and 4 deletions
|
@ -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"] }
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[package]
|
||||
name = "djls-pyenv"
|
||||
name = "djls-python"
|
||||
version = "0.0.0"
|
||||
edition = "2021"
|
||||
|
|
@ -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 }
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue