|
@@ -1,17 +1,24 @@
|
|
|
[package]
|
|
|
name = "tauri"
|
|
|
-version = "0.5.3"
|
|
|
-authors = ["Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>", "Daniel Thompson-Yvetot <denjell@sfosc.org>", "Tensor Programming <tensordeveloper@gmail.com>"]
|
|
|
+version = "0.6.0"
|
|
|
+authors = [
|
|
|
+ "Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
|
|
+ "Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
|
|
+ "Tensor Programming <tensordeveloper@gmail.com>"
|
|
|
+]
|
|
|
license = "MIT"
|
|
|
homepage = "https://tauri.studio"
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
description = "Make tiny, secure apps for all desktop platforms with Tauri"
|
|
|
edition = "2018"
|
|
|
-exclude = ["test/fixture/**"]
|
|
|
+exclude = [ "test/fixture/**" ]
|
|
|
+
|
|
|
+[package.metadata.docs.rs]
|
|
|
+features = [ "all-api" ]
|
|
|
|
|
|
[dependencies]
|
|
|
serde_json = "1.0"
|
|
|
-serde = { version = "1.0", features = ["derive"] }
|
|
|
+serde = { version = "1.0", features = [ "derive" ] }
|
|
|
webview-sys = { git = "https://github.com/tauri-apps/web-view", version = "0.5.0" }
|
|
|
web-view = { git = "https://github.com/tauri-apps/web-view", version = "0.6.2" }
|
|
|
tauri_includedir = "0.5.0"
|
|
@@ -21,13 +28,12 @@ webbrowser = "0.5.4"
|
|
|
lazy_static = "1.4.0"
|
|
|
tiny_http = { version = "0.7", optional = true }
|
|
|
threadpool = "1.8"
|
|
|
-uuid = { version = "0.8.1", features = ["v4"] }
|
|
|
+uuid = { version = "0.8.1", features = [ "v4" ] }
|
|
|
anyhow = "1.0.31"
|
|
|
thiserror = "1.0.20"
|
|
|
envmnt = "0.8.2"
|
|
|
once_cell = "1.4.0"
|
|
|
-
|
|
|
-tauri-api = { version = "0.5", path = "../tauri-api" }
|
|
|
+tauri-api = { version = "0.6", path = "../tauri-api" }
|
|
|
|
|
|
[build-dependencies]
|
|
|
tauri_includedir_codegen = "0.5.2"
|
|
@@ -35,35 +41,32 @@ tauri_includedir_codegen = "0.5.2"
|
|
|
[dev-dependencies]
|
|
|
proptest = "0.10.0"
|
|
|
serde_json = "1.0"
|
|
|
-tauri = {path = ".", features = [ "all-api", "edge" ]}
|
|
|
+tauri = { path = ".", features = [ "all-api", "edge" ] }
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
|
|
|
[features]
|
|
|
-cli = ["tauri-api/cli"]
|
|
|
-edge = ["web-view/edge"]
|
|
|
-embedded-server = ["tiny_http"]
|
|
|
-no-server = []
|
|
|
-all-api = ["tauri-api/notification"]
|
|
|
-read-text-file = []
|
|
|
-read-binary-file = []
|
|
|
-write-file = []
|
|
|
-read-dir = []
|
|
|
-copy-file = []
|
|
|
-create-dir = []
|
|
|
-remove-dir = []
|
|
|
-remove-file = []
|
|
|
-rename-file = []
|
|
|
-set-title = []
|
|
|
-execute = []
|
|
|
-open = []
|
|
|
-event = []
|
|
|
-updater = []
|
|
|
-open-dialog = []
|
|
|
-save-dialog = []
|
|
|
-notification = ["tauri-api/notification"]
|
|
|
-
|
|
|
-[package.metadata.docs.rs]
|
|
|
-features = ["all-api"]
|
|
|
+cli = [ "tauri-api/cli" ]
|
|
|
+edge = [ "web-view/edge" ]
|
|
|
+embedded-server = [ "tiny_http" ]
|
|
|
+no-server = [ ]
|
|
|
+all-api = [ "tauri-api/notification" ]
|
|
|
+read-text-file = [ ]
|
|
|
+read-binary-file = [ ]
|
|
|
+write-file = [ ]
|
|
|
+read-dir = [ ]
|
|
|
+copy-file = [ ]
|
|
|
+create-dir = [ ]
|
|
|
+remove-dir = [ ]
|
|
|
+remove-file = [ ]
|
|
|
+rename-file = [ ]
|
|
|
+set-title = [ ]
|
|
|
+execute = [ ]
|
|
|
+open = [ ]
|
|
|
+event = [ ]
|
|
|
+updater = [ ]
|
|
|
+open-dialog = [ ]
|
|
|
+save-dialog = [ ]
|
|
|
+notification = [ "tauri-api/notification" ]
|
|
|
|
|
|
[[example]]
|
|
|
name = "communication"
|