47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "zoo-modeling-app"
 | 
						|
version = "0.1.0"
 | 
						|
description = "The Zoo Modeling App"
 | 
						|
authors = ["Zoo Engineers <eng@zoo.dev>"]
 | 
						|
license = ""
 | 
						|
repository = "https://github.com/KittyCAD/modeling-app"
 | 
						|
default-run = "zoo-modeling-app"
 | 
						|
edition = "2021"
 | 
						|
rust-version = "1.70"
 | 
						|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 | 
						|
 | 
						|
[build-dependencies]
 | 
						|
tauri-build = { version = "2.0.0-beta.13", features = [] }
 | 
						|
 | 
						|
[dependencies]
 | 
						|
anyhow = "1"
 | 
						|
kcl-lib = { version = "0.1.53", path = "../src/wasm-lib/kcl" }
 | 
						|
kittycad = "0.3.5"
 | 
						|
log = "0.4.21"
 | 
						|
oauth2 = "4.4.2"
 | 
						|
serde_json = "1.0"
 | 
						|
tauri = { version = "2.0.0-beta.15", features = [ "devtools", "unstable"] }
 | 
						|
tauri-plugin-cli = { version = "2.0.0-beta.3" }
 | 
						|
tauri-plugin-deep-link = { version = "2.0.0-beta.3" }
 | 
						|
tauri-plugin-dialog = { version = "2.0.0-beta.6" }
 | 
						|
tauri-plugin-fs = { version = "2.0.0-beta.9" }
 | 
						|
tauri-plugin-http = { version = "2.0.0-beta.6" }
 | 
						|
tauri-plugin-log = { version = "2.0.0-beta.4" }
 | 
						|
tauri-plugin-os = { version = "2.0.0-beta.2" }
 | 
						|
tauri-plugin-persisted-scope = { version = "2.0.0-beta.7" }
 | 
						|
tauri-plugin-process = { version = "2.0.0-beta.2" }
 | 
						|
tauri-plugin-shell = { version = "2.0.0-beta.2" }
 | 
						|
# TODO: pin version of the next updater release (after beta.8)
 | 
						|
tauri-plugin-updater = { git = "https://github.com/tauri-apps/plugins-workspace", rev = "757ab74c8e0e376c56331edbfdc93fd9dd027cbd" }
 | 
						|
tokio = { version = "1.37.0", features = ["time", "fs", "process"] }
 | 
						|
toml = "0.8.2"
 | 
						|
url = "2.5.0"
 | 
						|
 | 
						|
[features]
 | 
						|
default = ["updater"]
 | 
						|
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
 | 
						|
# If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
 | 
						|
# DO NOT REMOVE!!
 | 
						|
custom-protocol = ["tauri/custom-protocol"]
 | 
						|
updater = []
 |