* bump modeling-cmds, nuke slow world Signed-off-by: Jess Frazelle <github@jessfraz.com> * more stuffs Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * i mechanical engineered today Signed-off-by: Jess Frazelle <github@jessfraz.com> * reverse uno your revolves Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * retry logic Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fixes Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.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 }
|
|
|
|
[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.36", features = ["derive"] }
|
|
console_error_panic_hook = "0.1.7"
|
|
dashmap = { version = "6.1.0" }
|
|
http = "1"
|
|
indexmap = "2.9.0"
|
|
kittycad = { version = "0.3.37", default-features = false, features = ["js", "requests"] }
|
|
kittycad-modeling-cmds = { version = "0.2.120", features = ["ts-rs", "websocket"] }
|
|
lazy_static = "1.5.0"
|
|
miette = "7.5.0"
|
|
pyo3 = { version = "0.24.1" }
|
|
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" }
|