* Bump the patch group in /rust with 3 updates Bumps the patch group in /rust with 3 updates: [toml_edit](https://github.com/toml-rs/toml), [syn](https://github.com/dtolnay/syn) and [toml](https://github.com/toml-rs/toml). Updates `toml_edit` from 0.22.26 to 0.22.27 - [Commits](https://github.com/toml-rs/toml/compare/v0.22.26...v0.22.27) Updates `syn` from 2.0.103 to 2.0.104 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.103...2.0.104) Updates `toml` from 0.8.22 to 0.8.23 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.22...toml-v0.8.23) --- updated-dependencies: - dependency-name: toml_edit dependency-version: 0.22.27 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: syn dependency-version: 2.0.104 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: toml dependency-version: 0.8.23 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] <support@github.com> * Trigger CI --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jonathan Tran <jonnytran@gmail.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "kcl-wasm-lib"
 | 
						|
version = "0.1.83"
 | 
						|
edition = "2021"
 | 
						|
repository = "https://github.com/KittyCAD/modeling-app"
 | 
						|
rust-version = "1.83"
 | 
						|
publish = false
 | 
						|
 | 
						|
[lib]
 | 
						|
crate-type = ["cdylib"]
 | 
						|
bench = false
 | 
						|
 | 
						|
[target.'cfg(target_arch = "wasm32")'.dependencies]
 | 
						|
bson = { workspace = true, features = ["uuid-1", "chrono"] }
 | 
						|
console_error_panic_hook = { workspace = true }
 | 
						|
data-encoding = "2.9.0"
 | 
						|
futures = "0.3.31"
 | 
						|
# Enable the feature in a transitive dependency.
 | 
						|
getrandom_2 = { package = "getrandom", version = "0.2", features = ["js"] }
 | 
						|
getrandom_3 = { package = "getrandom", version = "0.3", features = ["wasm_js"] }
 | 
						|
gloo-utils = "0.2.0"
 | 
						|
js-sys = "0.3.72"
 | 
						|
kcl-lib = { path = "../kcl-lib", features = ["artifact-graph"] }
 | 
						|
kittycad = { workspace = true }
 | 
						|
kittycad-modeling-cmds = { workspace = true }
 | 
						|
serde_json = { workspace = true }
 | 
						|
tokio = { workspace = true, features = ["sync", "rt"] }
 | 
						|
toml = "0.8.23"
 | 
						|
tower-lsp = { workspace = true, features = ["runtime-agnostic"] }
 | 
						|
uuid = { workspace = true, features = ["v4", "js", "serde"] }
 | 
						|
wasm-bindgen = "0.2.99"
 | 
						|
wasm-bindgen-futures = { version = "0.4.49", features = ["futures-core-03-stream"] }
 | 
						|
wasm-streams = "0.4.2"
 | 
						|
 | 
						|
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
 | 
						|
version = "0.3.76"
 | 
						|
features = [
 | 
						|
  "console",
 | 
						|
  "HtmlTextAreaElement",
 | 
						|
  "ReadableStream",
 | 
						|
  "WritableStream",
 | 
						|
]
 | 
						|
 | 
						|
[features]
 | 
						|
dhat-heap = ["kcl-lib/dhat-heap"]
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
anyhow.workspace = true
 | 
						|
pretty_assertions = "1.4.1"
 | 
						|
wasm-bindgen-test = "0.3.50"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
typed-path = "0.11.0"
 | 
						|
 | 
						|
# Local development only. Placeholder to speed up development cycle
 | 
						|
#[package.metadata.wasm-pack.profile.release]
 | 
						|
#wasm-opt = false
 |