2023-06-07 17:45:13 +10:00
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A Tauri App"
|
|
|
|
authors = ["you"]
|
|
|
|
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-02-07 07:06:26 -05: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-02-06 06:59:59 -05:00
|
|
|
tauri-build = { version = "2.0.0-beta", features = [] }
|
2023-06-07 17:45:13 +10:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-19 10:16:45 +10:00
|
|
|
anyhow = "1"
|
2024-02-11 10:55:04 -08:00
|
|
|
kittycad = "0.2.50"
|
2023-09-13 13:46:17 -07:00
|
|
|
oauth2 = "4.4.2"
|
2023-07-13 19:05:56 -07:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2024-02-13 10:29:50 -05:00
|
|
|
tauri = { version = "2.0.0-beta", features = [ "devtools", "unstable"] }
|
2024-02-07 07:06:26 -05:00
|
|
|
tauri-plugin-dialog = { version = "2.0.0-beta.0" }
|
|
|
|
tauri-plugin-fs = { version = "2.0.0-beta.0" }
|
|
|
|
tauri-plugin-http = { version = "2.0.0-beta.0" }
|
|
|
|
tauri-plugin-os = { version = "2.0.0-beta.0" }
|
|
|
|
tauri-plugin-shell = { version = "2.0.0-beta.0" }
|
2024-02-11 11:03:55 -08:00
|
|
|
tokio = { version = "1.36.0", features = ["time"] }
|
2023-10-03 07:20:21 -07:00
|
|
|
toml = "0.8.2"
|
2023-06-07 17:45:13 +10:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# 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"]
|