2023-06-07 17:45:13 +10:00
|
|
|
[package]
|
|
|
|
|
name = "app"
|
|
|
|
|
version = "0.1.0"
|
2024-04-25 22:02:11 -07:00
|
|
|
description = "The Zoo Modeling App"
|
|
|
|
|
authors = ["Zoo Engineers <eng@zoo.dev>"]
|
2023-06-07 17:45:13 +10:00
|
|
|
license = ""
|
2023-10-31 18:24:19 -05:00
|
|
|
repository = "https://github.com/KittyCAD/modeling-app"
|
2023-06-07 17:45:13 +10:00
|
|
|
default-run = "app"
|
|
|
|
|
edition = "2021"
|
2024-04-09 08:04:36 -04:00
|
|
|
rust-version = "1.70"
|
2023-06-07 17:45:13 +10:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
2024-04-23 20:57:23 +00:00
|
|
|
tauri-build = { version = "2.0.0-beta.13", features = [] }
|
2023-06-07 17:45:13 +10:00
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-19 10:16:45 +10:00
|
|
|
anyhow = "1"
|
2024-04-25 11:55:11 -07:00
|
|
|
kcl-lib = { version = "0.1.53", path = "../src/wasm-lib/kcl" }
|
2024-04-22 20:46:54 -07:00
|
|
|
kittycad = "0.3.0"
|
2024-05-03 13:49:26 -07:00
|
|
|
log = "0.4.21"
|
2023-09-13 13:46:17 -07:00
|
|
|
oauth2 = "4.4.2"
|
2023-07-13 19:05:56 -07:00
|
|
|
serde_json = "1.0"
|
2024-04-15 20:34:14 -07:00
|
|
|
tauri = { version = "2.0.0-beta.15", features = [ "devtools", "unstable"] }
|
2024-04-25 05:52:08 -07:00
|
|
|
tauri-plugin-cli = { version = "2.0.0-beta.3" }
|
2024-04-25 22:02:11 -07:00
|
|
|
tauri-plugin-deep-link = { version = "2.0.0-beta.3" }
|
2024-04-23 18:48:00 +00:00
|
|
|
tauri-plugin-dialog = { version = "2.0.0-beta.6" }
|
2024-04-23 16:56:00 +00:00
|
|
|
tauri-plugin-fs = { version = "2.0.0-beta.6" }
|
2024-04-24 05:54:18 -04:00
|
|
|
tauri-plugin-http = { version = "2.0.0-beta.6" }
|
2024-05-03 13:49:26 -07:00
|
|
|
tauri-plugin-log = { version = "2.0.0-beta.4" }
|
2024-04-17 10:30:23 -04:00
|
|
|
tauri-plugin-os = { version = "2.0.0-beta.2" }
|
2024-05-23 14:23:14 -07:00
|
|
|
tauri-plugin-persisted-scope = { version = "2.0.0-beta.7" }
|
2024-04-17 10:30:23 -04:00
|
|
|
tauri-plugin-process = { version = "2.0.0-beta.2" }
|
|
|
|
|
tauri-plugin-shell = { version = "2.0.0-beta.2" }
|
2024-04-19 10:39:13 -07:00
|
|
|
tauri-plugin-updater = { version = "2.0.0-beta.4" }
|
2024-04-25 22:02:11 -07:00
|
|
|
tokio = { version = "1.37.0", features = ["time", "fs", "process"] }
|
2023-10-03 07:20:21 -07:00
|
|
|
toml = "0.8.2"
|
2024-04-30 15:50:02 -07:00
|
|
|
url = "2.5.0"
|
2023-06-07 17:45:13 +10:00
|
|
|
|
|
|
|
|
[features]
|
2024-04-25 22:02:11 -07:00
|
|
|
default = ["updater"]
|
2023-06-07 17:45:13 +10:00
|
|
|
# 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!!
|
2023-06-19 10:16:45 +10:00
|
|
|
custom-protocol = ["tauri/custom-protocol"]
|
2024-04-25 22:02:11 -07:00
|
|
|
updater = []
|