change server path for vscode extension (#5769)

change server path

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2025-03-12 09:46:18 -07:00
committed by GitHub
parent b61cd3123f
commit 6c09da24a4
13 changed files with 22 additions and 22 deletions

20
rust/Cargo.lock generated
View File

@ -1783,7 +1783,7 @@ dependencies = [
[[package]]
name = "kcl-bumper"
version = "0.1.48"
version = "0.1.49"
dependencies = [
"anyhow",
"clap",
@ -1794,7 +1794,7 @@ dependencies = [
[[package]]
name = "kcl-derive-docs"
version = "0.1.48"
version = "0.1.49"
dependencies = [
"Inflector",
"anyhow",
@ -1813,7 +1813,7 @@ dependencies = [
[[package]]
name = "kcl-directory-test-macro"
version = "0.1.48"
version = "0.1.49"
dependencies = [
"proc-macro2",
"quote",
@ -1822,7 +1822,7 @@ dependencies = [
[[package]]
name = "kcl-language-server"
version = "0.2.48"
version = "0.2.49"
dependencies = [
"anyhow",
"clap",
@ -1843,7 +1843,7 @@ dependencies = [
[[package]]
name = "kcl-language-server-release"
version = "0.1.48"
version = "0.1.49"
dependencies = [
"anyhow",
"clap",
@ -1863,7 +1863,7 @@ dependencies = [
[[package]]
name = "kcl-lib"
version = "0.2.48"
version = "0.2.49"
dependencies = [
"anyhow",
"approx 0.5.1",
@ -1931,7 +1931,7 @@ dependencies = [
[[package]]
name = "kcl-python-bindings"
version = "0.3.48"
version = "0.3.49"
dependencies = [
"anyhow",
"kcl-lib",
@ -1946,7 +1946,7 @@ dependencies = [
[[package]]
name = "kcl-test-server"
version = "0.1.48"
version = "0.1.49"
dependencies = [
"anyhow",
"hyper 0.14.32",
@ -1959,7 +1959,7 @@ dependencies = [
[[package]]
name = "kcl-to-core"
version = "0.1.48"
version = "0.1.49"
dependencies = [
"anyhow",
"async-trait",
@ -1973,7 +1973,7 @@ dependencies = [
[[package]]
name = "kcl-wasm-lib"
version = "0.1.48"
version = "0.1.49"
dependencies = [
"bson",
"console_error_panic_hook",

View File

@ -1,7 +1,7 @@
[package]
name = "kcl-bumper"
version = "0.1.48"
version = "0.1.49"
edition = "2021"
repository = "https://github.com/KittyCAD/modeling-api"
rust-version = "1.76"

View File

@ -1,7 +1,7 @@
[package]
name = "kcl-derive-docs"
description = "A tool for generating documentation from Rust derive macros"
version = "0.1.48"
version = "0.1.49"
edition = "2021"
license = "MIT"
repository = "https://github.com/KittyCAD/modeling-app"

View File

@ -1,7 +1,7 @@
[package]
name = "kcl-directory-test-macro"
description = "A tool for generating tests from a directory of kcl files"
version = "0.1.48"
version = "0.1.49"
edition = "2021"
license = "MIT"
repository = "https://github.com/KittyCAD/modeling-app"

View File

@ -1,6 +1,6 @@
[package]
name = "kcl-language-server-release"
version = "0.1.48"
version = "0.1.49"
edition = "2021"
authors = ["KittyCAD Inc <kcl@kittycad.io>"]
publish = false

View File

@ -72,7 +72,7 @@ impl Build {
}
fn build_client(sh: &Shell, version: &str, release_tag: &str, target: &Target) -> anyhow::Result<()> {
let bundle_path = Path::new("server");
let bundle_path = Path::new("kcl-language-server/server");
sh.create_dir(bundle_path)?;
sh.copy_file(&target.server_path, bundle_path)?;
if let Some(symbols_path) = &target.symbols_path {

View File

@ -2,7 +2,7 @@
name = "kcl-language-server"
description = "A language server for KCL."
authors = ["KittyCAD Inc <kcl@kittycad.io>"]
version = "0.2.48"
version = "0.2.49"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -97,7 +97,7 @@ async function getServer(
'You need to manually clone the kcl-lsp repository and ' +
'run `cargo install` to build the language server from sources. ' +
'If you feel that your platform should be supported, please create an issue ' +
'about that [here](https://github.com/kittycad/kcl-lsp/issues) and we ' +
'about that [here](https://github.com/kittycad/modeling-app/issues) and we ' +
'will consider it.'
)
return undefined

View File

@ -1,7 +1,7 @@
[package]
name = "kcl-lib"
description = "KittyCAD Language implementation and tools"
version = "0.2.48"
version = "0.2.49"
edition = "2021"
license = "MIT"
repository = "https://github.com/KittyCAD/modeling-app"

View File

@ -1,6 +1,6 @@
[package]
name = "kcl-python-bindings"
version = "0.3.48"
version = "0.3.49"
edition = "2021"
repository = "https://github.com/kittycad/modeling-app"

View File

@ -1,7 +1,7 @@
[package]
name = "kcl-test-server"
description = "A test server for KCL"
version = "0.1.48"
version = "0.1.49"
edition = "2021"
license = "MIT"

View File

@ -1,7 +1,7 @@
[package]
name = "kcl-to-core"
description = "Utility methods to convert kcl to engine core executable tests"
version = "0.1.48"
version = "0.1.49"
edition = "2021"
license = "MIT"
repository = "https://github.com/KittyCAD/modeling-app"

View File

@ -1,6 +1,6 @@
[package]
name = "kcl-wasm-lib"
version = "0.1.48"
version = "0.1.49"
edition = "2021"
repository = "https://github.com/KittyCAD/modeling-app"
rust-version = "1.83"