Files
modeling-app/rust/kcl-language-server/Cargo.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

2025-03-04 22:21:12 -08:00
[package]
name = "kcl-language-server"
description = "A language server for KCL."
authors = ["KittyCAD Inc <kcl@kittycad.io>"]
2025-07-01 15:15:35 -04:00
version = "0.2.84"
2025-03-04 22:21:12 -08:00
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kcl-language-server"
path = "src/main.rs"
bench = false
2025-03-04 22:21:12 -08:00
[dependencies]
anyhow = { workspace = true }
clap = { workspace = true, features = ["cargo", "derive", "env", "unicode"] }
dashmap = { workspace = true }
kcl-lib = { path = "../kcl-lib", default-features = false, features = [
"cli",
"engine",
"disable-println",
] }
kittycad = { workspace = true }
lazy_static = { workspace = true }
Bump the patch group in /rust with 8 updates (#6312) Bumps the patch group in /rust with 8 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.97` | `1.0.98` | | [clap](https://github.com/clap-rs/clap) | `4.5.32` | `4.5.36` | | [kittycad-modeling-cmds](https://github.com/KittyCAD/modeling-api) | `0.2.113` | `0.2.114` | | [once_cell](https://github.com/matklad/once_cell) | `1.21.1` | `1.21.3` | | [log](https://github.com/rust-lang/log) | `0.4.26` | `0.4.27` | | [flate2](https://github.com/rust-lang/flate2-rs) | `1.1.0` | `1.1.1` | | [time](https://github.com/time-rs/time) | `0.3.40` | `0.3.41` | | [image](https://github.com/image-rs/image) | `0.25.5` | `0.25.6` | Updates `anyhow` from 1.0.97 to 1.0.98 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](https://github.com/dtolnay/anyhow/compare/1.0.97...1.0.98) Updates `clap` from 4.5.32 to 4.5.36 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.32...clap_complete-v4.5.36) Updates `kittycad-modeling-cmds` from 0.2.113 to 0.2.114 - [Commits](https://github.com/KittyCAD/modeling-api/compare/kittycad-modeling-cmds-0.2.113...kittycad-modeling-cmds-0.2.114) Updates `once_cell` from 1.21.1 to 1.21.3 - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.21.1...v1.21.3) Updates `log` from 0.4.26 to 0.4.27 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.26...0.4.27) Updates `flate2` from 1.1.0 to 1.1.1 - [Release notes](https://github.com/rust-lang/flate2-rs/releases) - [Commits](https://github.com/rust-lang/flate2-rs/compare/1.1.0...1.1.1) Updates `time` from 0.3.40 to 0.3.41 - [Release notes](https://github.com/time-rs/time/releases) - [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md) - [Commits](https://github.com/time-rs/time/compare/v0.3.40...v0.3.41) Updates `image` from 0.25.5 to 0.25.6 - [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md) - [Commits](https://github.com/image-rs/image/compare/v0.25.5...v0.25.6) --- updated-dependencies: - dependency-name: anyhow dependency-version: 1.0.98 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: clap dependency-version: 4.5.36 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: kittycad-modeling-cmds dependency-version: 0.2.114 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: once_cell dependency-version: 1.21.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: log dependency-version: 0.4.27 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: flate2 dependency-version: 1.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: time dependency-version: 0.3.41 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: image dependency-version: 0.25.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-14 09:48:43 -07:00
log = { version = "0.4.27", features = ["serde"] }
2025-03-04 22:21:12 -08:00
slog = { workspace = true }
slog-async = { workspace = true }
slog-json = { workspace = true }
slog-term = { workspace = true }
tracing-subscriber = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Bump the minor group across 1 directory with 25 updates (#7491) * Bump the minor group across 1 directory with 25 updates Bumps the minor group with 25 updates in the /rust directory: | Package | From | To | | --- | --- | --- | | [bson](https://github.com/mongodb/bson-rust) | `2.14.0` | `2.15.0` | | [clap](https://github.com/clap-rs/clap) | `4.5.36` | `4.5.40` | | [miette](https://github.com/zkat/miette) | `7.5.0` | `7.6.0` | | [pyo3](https://github.com/pyo3/pyo3) | `0.24.1` | `0.24.2` | | [tokio](https://github.com/tokio-rs/tokio) | `1.44.2` | `1.45.1` | | [uuid](https://github.com/uuid-rs/uuid) | `1.16.0` | `1.17.0` | | [toml_edit](https://github.com/toml-rs/toml) | `0.22.24` | `0.22.26` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.94` | `1.0.95` | | [syn](https://github.com/dtolnay/syn) | `2.0.100` | `2.0.103` | | [signal-hook](https://github.com/vorner/signal-hook) | `0.3.17` | `0.3.18` | | [flate2](https://github.com/rust-lang/flate2-rs) | `1.1.1` | `1.1.2` | | [chrono](https://github.com/chronotope/chrono) | `0.4.40` | `0.4.41` | | [itertools](https://github.com/rust-itertools/itertools) | `0.13.0` | `0.14.0` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.15` | `0.12.20` | | [sha2](https://github.com/RustCrypto/hashes) | `0.10.8` | `0.10.9` | | [tabled](https://github.com/zhiburt/tabled) | `0.18.0` | `0.20.0` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.19.0` | `3.20.0` | | [toml](https://github.com/toml-rs/toml) | `0.8.20` | `0.8.22` | | [tynm](https://github.com/azriel91/tynm) | `0.1.10` | `0.2.0` | | [winnow](https://github.com/winnow-rs/winnow) | `0.7.10` | `0.7.11` | | [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) | `0.26.2` | `0.27.0` | | [expectorate](https://github.com/oxidecomputer/expectorate) | `1.1.0` | `1.2.0` | | [insta](https://github.com/mitsuhiko/insta) | `1.42.2` | `1.43.1` | | [twenty-twenty](https://github.com/kittycad/twenty-twenty) | `0.8.1` | `0.8.2` | | [data-encoding](https://github.com/ia0/data-encoding) | `2.8.0` | `2.9.0` | Updates `bson` from 2.14.0 to 2.15.0 - [Release notes](https://github.com/mongodb/bson-rust/releases) - [Commits](https://github.com/mongodb/bson-rust/compare/v2.14.0...v2.15.0) Updates `clap` from 4.5.36 to 4.5.40 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.36...clap_complete-v4.5.40) Updates `miette` from 7.5.0 to 7.6.0 - [Release notes](https://github.com/zkat/miette/releases) - [Changelog](https://github.com/zkat/miette/blob/main/CHANGELOG.md) - [Commits](https://github.com/zkat/miette/commits/miette-derive-v7.6.0) Updates `pyo3` from 0.24.1 to 0.24.2 - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.24.1...v0.24.2) Updates `tokio` from 1.44.2 to 1.45.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.44.2...tokio-1.45.1) Updates `uuid` from 1.16.0 to 1.17.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.16.0...v1.17.0) Updates `toml_edit` from 0.22.24 to 0.22.26 - [Commits](https://github.com/toml-rs/toml/compare/v0.22.24...v0.22.26) Updates `proc-macro2` from 1.0.94 to 1.0.95 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.94...1.0.95) Updates `syn` from 2.0.100 to 2.0.103 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.100...2.0.103) Updates `signal-hook` from 0.3.17 to 0.3.18 - [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md) - [Commits](https://github.com/vorner/signal-hook/compare/v0.3.17...v0.3.18) Updates `flate2` from 1.1.1 to 1.1.2 - [Release notes](https://github.com/rust-lang/flate2-rs/releases) - [Commits](https://github.com/rust-lang/flate2-rs/compare/1.1.1...1.1.2) Updates `chrono` from 0.4.40 to 0.4.41 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](https://github.com/chronotope/chrono/compare/v0.4.40...v0.4.41) Updates `itertools` from 0.13.0 to 0.14.0 - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.13.0...v0.14.0) Updates `reqwest` from 0.12.15 to 0.12.20 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.15...v0.12.20) Updates `sha2` from 0.10.8 to 0.10.9 - [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.10.8...sha2-v0.10.9) Updates `tabled` from 0.18.0 to 0.20.0 - [Changelog](https://github.com/zhiburt/tabled/blob/master/CHANGELOG.md) - [Commits](https://github.com/zhiburt/tabled/commits) Updates `tempfile` from 3.19.0 to 3.20.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.19.0...v3.20.0) Updates `toml` from 0.8.20 to 0.8.22 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.20...toml-v0.8.22) Updates `tynm` from 0.1.10 to 0.2.0 - [Release notes](https://github.com/azriel91/tynm/releases) - [Changelog](https://github.com/azriel91/tynm/blob/main/CHANGELOG.md) - [Commits](https://github.com/azriel91/tynm/compare/0.1.10...0.2.0) Updates `winnow` from 0.7.10 to 0.7.11 - [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md) - [Commits](https://github.com/winnow-rs/winnow/compare/v0.7.10...v0.7.11) Updates `tokio-tungstenite` from 0.26.2 to 0.27.0 - [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tokio-tungstenite/compare/v0.26.2...v0.27.0) Updates `expectorate` from 1.1.0 to 1.2.0 - [Release notes](https://github.com/oxidecomputer/expectorate/releases) - [Commits](https://github.com/oxidecomputer/expectorate/compare/v1.1.0...v1.2.0) Updates `insta` from 1.42.2 to 1.43.1 - [Release notes](https://github.com/mitsuhiko/insta/releases) - [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md) - [Commits](https://github.com/mitsuhiko/insta/compare/1.42.2...1.43.1) Updates `twenty-twenty` from 0.8.1 to 0.8.2 - [Release notes](https://github.com/kittycad/twenty-twenty/releases) - [Commits](https://github.com/kittycad/twenty-twenty/commits/v0.8.2) Updates `data-encoding` from 2.8.0 to 2.9.0 - [Commits](https://github.com/ia0/data-encoding/compare/v2.8.0...v2.9.0) --- updated-dependencies: - dependency-name: bson dependency-version: 2.15.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: clap dependency-version: 4.5.40 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: miette dependency-version: 7.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: pyo3 dependency-version: 0.24.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: tokio dependency-version: 1.45.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: uuid dependency-version: 1.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: toml_edit dependency-version: 0.22.26 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: proc-macro2 dependency-version: 1.0.95 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: syn dependency-version: 2.0.103 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: signal-hook dependency-version: 0.3.18 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: flate2 dependency-version: 1.1.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: chrono dependency-version: 0.4.41 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: itertools dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: reqwest dependency-version: 0.12.20 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: sha2 dependency-version: 0.10.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: tabled dependency-version: 0.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: tempfile dependency-version: 3.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: toml dependency-version: 0.8.22 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: tynm dependency-version: 0.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: winnow dependency-version: 0.7.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: tokio-tungstenite dependency-version: 0.27.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: expectorate dependency-version: 1.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: insta dependency-version: 1.43.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor - dependency-name: twenty-twenty dependency-version: 0.8.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor - dependency-name: data-encoding dependency-version: 2.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update snapshots * Update snapshots --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-06-17 05:29:38 -04:00
signal-hook = "0.3.18"
tokio = { version = "1.45.1", features = ["full"] }
2025-03-04 22:21:12 -08:00
tower-lsp = { version = "0.20.0", features = ["proposed"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
tower-lsp = { version = "0.20.0", default-features = false, features = [
"runtime-agnostic",
] }
[lints]
workspace = true