* Parse an unparse type decls (and refactor impl attributes slightly) Signed-off-by: Nick Cameron <nrc@ncameron.org> * Remove special treatment of geometric types from parser and executor Signed-off-by: Nick Cameron <nrc@ncameron.org> * Generate docs for std types Signed-off-by: Nick Cameron <nrc@ncameron.org> * Hover tool-tips for types and fixup the frontend Signed-off-by: Nick Cameron <nrc@ncameron.org> * Fixes Signed-off-by: Nick Cameron <nrc@ncameron.org> --------- Signed-off-by: Nick Cameron <nrc@ncameron.org>
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[workspace]
 | 
						|
resolver = "2"
 | 
						|
members = [
 | 
						|
	"kcl-bumper",
 | 
						|
	"kcl-derive-docs",
 | 
						|
	"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.85"
 | 
						|
anyhow = { version = "1" }
 | 
						|
clap = { version = "4.5.31", features = ["derive"] }
 | 
						|
dashmap = { version = "6.1.0" }
 | 
						|
http = "1"
 | 
						|
indexmap = "2.7.0"
 | 
						|
kittycad = { version = "0.3.28", default-features = false, features = ["js", "requests"] }
 | 
						|
kittycad-modeling-cmds = { version = "0.2.100", features = ["ts-rs", "websocket"] }
 | 
						|
lazy_static = "1.5.0"
 | 
						|
miette = "7.5.0"
 | 
						|
pyo3 = { version = "0.22.6" }
 | 
						|
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.2.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" }
 |