Skip to content

Commit 6c09da2

Browse files
authored
change server path for vscode extension (#5769)
change server path Signed-off-by: Jess Frazelle <[email protected]>
1 parent b61cd31 commit 6c09da2

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

rust/Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/kcl-bumper/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "kcl-bumper"
4-
version = "0.1.48"
4+
version = "0.1.49"
55
edition = "2021"
66
repository = "https://github.com/KittyCAD/modeling-api"
77
rust-version = "1.76"

rust/kcl-derive-docs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kcl-derive-docs"
33
description = "A tool for generating documentation from Rust derive macros"
4-
version = "0.1.48"
4+
version = "0.1.49"
55
edition = "2021"
66
license = "MIT"
77
repository = "https://github.com/KittyCAD/modeling-app"

rust/kcl-directory-test-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kcl-directory-test-macro"
33
description = "A tool for generating tests from a directory of kcl files"
4-
version = "0.1.48"
4+
version = "0.1.49"
55
edition = "2021"
66
license = "MIT"
77
repository = "https://github.com/KittyCAD/modeling-app"

rust/kcl-language-server-release/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-language-server-release"
3-
version = "0.1.48"
3+
version = "0.1.49"
44
edition = "2021"
55
authors = ["KittyCAD Inc <[email protected]>"]
66
publish = false

rust/kcl-language-server-release/src/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ impl Build {
7272
}
7373

7474
fn build_client(sh: &Shell, version: &str, release_tag: &str, target: &Target) -> anyhow::Result<()> {
75-
let bundle_path = Path::new("server");
75+
let bundle_path = Path::new("kcl-language-server/server");
7676
sh.create_dir(bundle_path)?;
7777
sh.copy_file(&target.server_path, bundle_path)?;
7878
if let Some(symbols_path) = &target.symbols_path {

rust/kcl-language-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "kcl-language-server"
33
description = "A language server for KCL."
44
authors = ["KittyCAD Inc <[email protected]>"]
5-
version = "0.2.48"
5+
version = "0.2.49"
66
edition = "2021"
77
license = "MIT"
88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

rust/kcl-language-server/client/src/bootstrap.ts

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

rust/kcl-lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kcl-lib"
33
description = "KittyCAD Language implementation and tools"
4-
version = "0.2.48"
4+
version = "0.2.49"
55
edition = "2021"
66
license = "MIT"
77
repository = "https://github.com/KittyCAD/modeling-app"

rust/kcl-python-bindings/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-python-bindings"
3-
version = "0.3.48"
3+
version = "0.3.49"
44
edition = "2021"
55
repository = "https://github.com/kittycad/modeling-app"
66

rust/kcl-test-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kcl-test-server"
33
description = "A test server for KCL"
4-
version = "0.1.48"
4+
version = "0.1.49"
55
edition = "2021"
66
license = "MIT"
77

rust/kcl-to-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kcl-to-core"
33
description = "Utility methods to convert kcl to engine core executable tests"
4-
version = "0.1.48"
4+
version = "0.1.49"
55
edition = "2021"
66
license = "MIT"
77
repository = "https://github.com/KittyCAD/modeling-app"

rust/kcl-wasm-lib/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "kcl-wasm-lib"
3-
version = "0.1.48"
3+
version = "0.1.49"
44
edition = "2021"
55
repository = "https://github.com/KittyCAD/modeling-app"
66
rust-version = "1.83"

0 commit comments

Comments
 (0)