30 lines
		
	
	
		
			695 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			695 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "kcl-to-core"
 | 
						|
description = "Utility methods to convert kcl to engine core executable tests"
 | 
						|
version = "0.1.52"
 | 
						|
edition = "2021"
 | 
						|
license = "MIT"
 | 
						|
repository = "https://github.com/KittyCAD/modeling-app"
 | 
						|
publish = false
 | 
						|
 | 
						|
[lib]
 | 
						|
bench = false
 | 
						|
 | 
						|
[[bin]]
 | 
						|
name = "kcl-to-core"
 | 
						|
path = "src/tool.rs"
 | 
						|
bench = false
 | 
						|
 | 
						|
[dependencies]
 | 
						|
anyhow = { workspace = true }
 | 
						|
async-trait = { workspace = true }
 | 
						|
indexmap = { workspace = true }
 | 
						|
kcl-lib = { path = "../kcl-lib" }
 | 
						|
kittycad = { workspace = true, features = ["clap"] }
 | 
						|
kittycad-modeling-cmds = { workspace = true }
 | 
						|
tokio = { workspace = true, features = ["full", "time", "rt", "tracing"] }
 | 
						|
uuid = { workspace = true }
 | 
						|
 | 
						|
[lints]
 | 
						|
workspace = true
 |