* 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>
66 lines
1.8 KiB
TOML
66 lines
1.8 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"kcl-bumper",
|
|
"kcl-derive-docs",
|
|
"kcl-directory-test-macro",
|
|
"kcl-language-server",
|
|
"kcl-language-server-release",
|
|
"kcl-lib",
|
|
"kcl-python-bindings",
|
|
"kcl-test-server",
|
|
"kcl-to-core",
|
|
"kcl-wasm-lib"
|
|
]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
debug = true
|
|
|
|
[profile.dev]
|
|
debug = 0
|
|
|
|
[profile.dev.package]
|
|
insta = { opt-level = 3 }
|
|
similar = { opt-level = 3 }
|
|
|
|
[profile.test]
|
|
debug = "line-tables-only"
|
|
|
|
[workspace.dependencies]
|
|
async-trait = "0.1.88"
|
|
anyhow = { version = "1" }
|
|
bson = { version = "2.13.0", features = ["uuid-1", "chrono"] }
|
|
clap = { version = "4.5.31", features = ["derive"] }
|
|
dashmap = { version = "6.1.0" }
|
|
http = "1"
|
|
indexmap = "2.7.0"
|
|
kittycad = { version = "0.3.33", default-features = false, features = ["js", "requests"] }
|
|
kittycad-modeling-cmds = { version = "0.2.107", features = ["ts-rs", "websocket"] }
|
|
lazy_static = "1.5.0"
|
|
miette = "7.5.0"
|
|
pyo3 = { version = "0.24.0" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1" }
|
|
slog = "2.7.0"
|
|
slog-async = "2.8.0"
|
|
slog-json = "2.6.1"
|
|
slog-term = "2.9.1"
|
|
tokio = { version = "1" }
|
|
tower-lsp = { version = "0.20.0", default-features = false }
|
|
tracing-subscriber = { version = "0.3.19", features = ["registry", "std", "fmt", "smallvec", "ansi", "tracing-log", "json"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
zip = { version = "2.4.2", default-features = false }
|
|
|
|
[workspace.lints.clippy]
|
|
assertions_on_result_states = "warn"
|
|
dbg_macro = "warn"
|
|
iter_over_hash_type = "warn"
|
|
lossy_float_literal = "warn"
|
|
result_large_err = "allow"
|
|
|
|
# Example: how to point modeling-app at a different repo (e.g. a branch or a local clone)
|
|
#[patch.crates-io]
|
|
#kittycad-modeling-cmds = { path = "../../../modeling-api/modeling-cmds" }
|
|
#kittycad-modeling-session = { path = "../../../modeling-api/modeling-session" }
|