* update kittycad.rs Signed-off-by: Jess Frazelle <github@jessfraz.com> * tauri bump Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
46 lines
1.7 KiB
TOML
46 lines
1.7 KiB
TOML
[package]
|
|
name = "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 = "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.18", features = [] }
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
kcl-lib = { version = "0.1.53", path = "../src/wasm-lib/kcl" }
|
|
kittycad = "0.3.7"
|
|
log = "0.4.21"
|
|
oauth2 = "4.4.2"
|
|
serde_json = "1.0"
|
|
tauri = { version = "2.0.0-beta.23", features = [ "devtools", "unstable"] }
|
|
tauri-plugin-cli = { version = "2.0.0-beta.7" }
|
|
tauri-plugin-deep-link = { version = "2.0.0-beta.8" }
|
|
tauri-plugin-dialog = { version = "2.0.0-beta.6" }
|
|
tauri-plugin-fs = { version = "2.0.0-beta.10" }
|
|
tauri-plugin-http = { version = "2.0.0-beta.11" }
|
|
tauri-plugin-log = { version = "2.0.0-beta.7" }
|
|
tauri-plugin-os = { version = "2.0.0-beta.7" }
|
|
tauri-plugin-persisted-scope = { version = "2.0.0-beta.10" }
|
|
tauri-plugin-process = { version = "2.0.0-beta.7" }
|
|
tauri-plugin-shell = { version = "2.0.0-beta.8" }
|
|
tauri-plugin-updater = { version = "2.0.0-beta.9" }
|
|
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 = []
|