Bump and release kcl-lib 0.2.27 (#4643)
* bump and release kcl-lib * update snapshot * A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu-latest-8-cores) * empty commit --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
		@ -149,11 +149,6 @@
 | 
			
		||||
    "title": "Tire",
 | 
			
		||||
    "description": "A tire is a critical component of a vehicle that provides the necessary traction and grip between the car and the road. It supports the vehicle's weight and absorbs shocks from road irregularities."
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "file": "wall-e.kcl",
 | 
			
		||||
    "title": "WALL-E",
 | 
			
		||||
    "description": "An inquisitive trash compacting robot imagined by Disney Pixar Animation Studios"
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "file": "washer.kcl",
 | 
			
		||||
    "title": "Washer",
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								src/wasm-lib/Cargo.lock
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										2
									
								
								src/wasm-lib/Cargo.lock
									
									
									
										generated
									
									
									
								
							@ -1706,7 +1706,7 @@ dependencies = [
 | 
			
		||||
 | 
			
		||||
[[package]]
 | 
			
		||||
name = "kcl-lib"
 | 
			
		||||
version = "0.2.26"
 | 
			
		||||
version = "0.2.27"
 | 
			
		||||
dependencies = [
 | 
			
		||||
 "anyhow",
 | 
			
		||||
 "approx 0.5.1",
 | 
			
		||||
 | 
			
		||||
@ -1,7 +1,7 @@
 | 
			
		||||
[package]
 | 
			
		||||
name = "kcl-lib"
 | 
			
		||||
description = "KittyCAD Language implementation and tools"
 | 
			
		||||
version = "0.2.26"
 | 
			
		||||
version = "0.2.27"
 | 
			
		||||
edition = "2021"
 | 
			
		||||
license = "MIT"
 | 
			
		||||
repository = "https://github.com/KittyCAD/modeling-app"
 | 
			
		||||
@ -16,7 +16,10 @@ async-recursion = "1.1.1"
 | 
			
		||||
async-trait = "0.1.83"
 | 
			
		||||
base64 = "0.22.1"
 | 
			
		||||
chrono = "0.4.38"
 | 
			
		||||
clap = { version = "4.5.21", default-features = false, optional = true, features = ["std", "derive"] }
 | 
			
		||||
clap = { version = "4.5.21", default-features = false, optional = true, features = [
 | 
			
		||||
    "std",
 | 
			
		||||
    "derive",
 | 
			
		||||
] }
 | 
			
		||||
convert_case = "0.6.0"
 | 
			
		||||
dashmap = "6.1.0"
 | 
			
		||||
databake = { version = "0.1.8", features = ["derive"] }
 | 
			
		||||
@ -38,16 +41,32 @@ miette = "7.2.0"
 | 
			
		||||
mime_guess = "2.0.5"
 | 
			
		||||
parse-display = "0.9.1"
 | 
			
		||||
pyo3 = { version = "0.22.6", optional = true }
 | 
			
		||||
reqwest = { version = "0.12", default-features = false, features = ["stream", "rustls-tls"] }
 | 
			
		||||
reqwest = { version = "0.12", default-features = false, features = [
 | 
			
		||||
    "stream",
 | 
			
		||||
    "rustls-tls",
 | 
			
		||||
] }
 | 
			
		||||
ropey = "1.6.1"
 | 
			
		||||
schemars = { version = "0.8.17", features = ["impl_json_schema", "indexmap2", "url", "uuid1", "preserve_order"] }
 | 
			
		||||
schemars = { version = "0.8.17", features = [
 | 
			
		||||
    "impl_json_schema",
 | 
			
		||||
    "indexmap2",
 | 
			
		||||
    "url",
 | 
			
		||||
    "uuid1",
 | 
			
		||||
    "preserve_order",
 | 
			
		||||
] }
 | 
			
		||||
serde = { version = "1.0.214", features = ["derive"] }
 | 
			
		||||
serde_json = "1.0.128"
 | 
			
		||||
sha2 = "0.10.8"
 | 
			
		||||
tabled = { version = "0.15.0", optional = true }
 | 
			
		||||
thiserror = "2.0.0"
 | 
			
		||||
toml = "0.8.19"
 | 
			
		||||
ts-rs = { version = "10.0.0", features = ["uuid-impl", "url-impl", "chrono-impl", "indexmap-impl", "no-serde-warnings", "serde-json-impl"] }
 | 
			
		||||
ts-rs = { version = "10.0.0", features = [
 | 
			
		||||
    "uuid-impl",
 | 
			
		||||
    "url-impl",
 | 
			
		||||
    "chrono-impl",
 | 
			
		||||
    "indexmap-impl",
 | 
			
		||||
    "no-serde-warnings",
 | 
			
		||||
    "serde-json-impl",
 | 
			
		||||
] }
 | 
			
		||||
url = { version = "2.5.3", features = ["serde"] }
 | 
			
		||||
urlencoding = "2.1.3"
 | 
			
		||||
uuid = { version = "1.11.0", features = ["v4", "js", "serde"] }
 | 
			
		||||
@ -59,7 +78,9 @@ zip = { version = "2.0.0", default-features = false }
 | 
			
		||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
 | 
			
		||||
js-sys = { version = "0.3.72" }
 | 
			
		||||
tokio = { version = "1.41.1", features = ["sync", "time"] }
 | 
			
		||||
tower-lsp = { version = "0.20.0", default-features = false, features = ["runtime-agnostic"] }
 | 
			
		||||
tower-lsp = { version = "0.20.0", default-features = false, features = [
 | 
			
		||||
    "runtime-agnostic",
 | 
			
		||||
] }
 | 
			
		||||
wasm-bindgen = "0.2.91"
 | 
			
		||||
wasm-bindgen-futures = "0.4.44"
 | 
			
		||||
web-sys = { version = "0.3.72", features = ["console"] }
 | 
			
		||||
@ -68,7 +89,9 @@ web-sys = { version = "0.3.72", features = ["console"] }
 | 
			
		||||
approx = "0.5"
 | 
			
		||||
bson = { version = "2.13.0", features = ["uuid-1", "chrono"] }
 | 
			
		||||
tokio = { version = "1.41.1", features = ["full"] }
 | 
			
		||||
tokio-tungstenite = { version = "0.24.0", features = ["rustls-tls-native-roots"] }
 | 
			
		||||
tokio-tungstenite = { version = "0.24.0", features = [
 | 
			
		||||
    "rustls-tls-native-roots",
 | 
			
		||||
] }
 | 
			
		||||
tower-lsp = { version = "0.20.0", features = ["proposed"] }
 | 
			
		||||
 | 
			
		||||
[features]
 | 
			
		||||
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							| 
		 Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 108 KiB  | 
		Reference in New Issue
	
	Block a user