2021-05-09 21:19:37 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-runtime"
|
|
|
|
version = "0.0.0"
|
|
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
|
|
categories = [ "gui", "web-programming" ]
|
|
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
homepage = "https://tauri.studio"
|
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Runtime for Tauri applications"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
thiserror = "1.0"
|
|
|
|
tauri-utils = { version = "1.0.0-beta-rc.1", path = "../tauri-utils" }
|
2021-05-10 00:43:50 +03:00
|
|
|
uuid = { version = "0.8.2", features = [ "v4" ] }
|