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

32 lines
879 B
TOML
Raw Normal View History

2025-03-04 22:21:12 -08:00
[package]
name = "kcl-language-server-release"
version = "0.1.59"
2025-03-04 22:21:12 -08:00
edition = "2021"
authors = ["KittyCAD Inc <kcl@kittycad.io>"]
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kcl-language-server-release"
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"] }
flate2 = "1.1.0"
lazy_static = { workspace = true }
log = { version = "0.4.26", features = ["serde"] }
slog = { workspace = true }
slog-async = { workspace = true }
slog-json = { workspace = true }
slog-term = { workspace = true }
Bump the patch group across 1 directory with 7 updates (#5888) * Bump the patch group across 1 directory with 7 updates Bumps the patch group with 6 updates in the /rust directory: | Package | From | To | | --- | --- | --- | | [async-trait](https://github.com/dtolnay/async-trait) | `0.1.87` | `0.1.88` | | [kittycad-modeling-cmds](https://github.com/KittyCAD/modeling-api) | `0.2.105` | `0.2.107` | | [zip](https://github.com/zip-rs/zip2) | `2.4.1` | `2.4.2` | | [time](https://github.com/time-rs/time) | `0.3.39` | `0.3.40` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.14` | `0.12.15` | | [handlebars](https://github.com/sunng87/handlebars-rust) | `6.3.1` | `6.3.2` | Updates `async-trait` from 0.1.87 to 0.1.88 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.87...0.1.88) Updates `kittycad-modeling-cmds` from 0.2.105 to 0.2.107 - [Commits](https://github.com/KittyCAD/modeling-api/compare/kittycad-modeling-cmds-0.2.105...kittycad-modeling-cmds-0.2.107) Updates `uuid` from 1.15.1 to 1.16.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0) Updates `zip` from 2.4.1 to 2.4.2 - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v2.4.1...v2.4.2) Updates `time` from 0.3.39 to 0.3.40 - [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.39...v0.3.40) Updates `reqwest` from 0.12.14 to 0.12.15 - [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.14...v0.12.15) Updates `handlebars` from 6.3.1 to 6.3.2 - [Release notes](https://github.com/sunng87/handlebars-rust/releases) - [Changelog](https://github.com/sunng87/handlebars-rust/blob/master/CHANGELOG.md) - [Commits](https://github.com/sunng87/handlebars-rust/compare/v6.3.1...v6.3.2) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: kittycad-modeling-cmds dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: time dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: handlebars dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] <support@github.com> * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 --------- 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-03-20 22:50:43 +00:00
time = "0.3.40"
2025-03-04 22:21:12 -08:00
tokio = { workspace = true, features = ["full"] }
tracing-subscriber = { workspace = true }
xshell = "0.2.6"
zip = { workspace = true, features = ["default"] }
[lints]
workspace = true