2019-12-22 22:04:45 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-api"
|
2020-08-21 15:48:20 +03:00
|
|
|
version = "0.7.4"
|
2020-06-18 19:55:21 +03:00
|
|
|
authors = [
|
|
|
|
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
|
|
|
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
|
|
|
"Tensor Programming <tensordeveloper@gmail.com>"
|
|
|
|
]
|
2020-07-10 03:54:35 +03:00
|
|
|
categories = [ "gui", "os", "filesystem", "web-programming" ]
|
2019-12-22 22:04:45 +03:00
|
|
|
license = "MIT"
|
2020-01-23 13:16:59 +03:00
|
|
|
homepage = "https://tauri.studio"
|
2019-12-22 22:04:45 +03:00
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Make tiny, secure apps for all desktop platforms with Tauri"
|
|
|
|
edition = "2018"
|
2020-06-18 19:55:21 +03:00
|
|
|
exclude = [ "test/fixture/**" ]
|
2019-12-22 22:04:45 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-06-18 19:55:21 +03:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2020-05-11 23:03:58 +03:00
|
|
|
serde_json = "1.0"
|
2020-03-17 13:42:59 +03:00
|
|
|
serde_repr = "0.1"
|
2020-07-10 04:09:48 +03:00
|
|
|
dirs = "3.0.1"
|
2020-09-24 04:00:46 +03:00
|
|
|
zip = "0.5.8"
|
2020-10-10 22:52:46 +03:00
|
|
|
semver = "0.11"
|
2019-12-22 22:04:45 +03:00
|
|
|
tempfile = "3"
|
2020-09-24 04:00:46 +03:00
|
|
|
either = "1.6.1"
|
2019-12-22 22:04:45 +03:00
|
|
|
tar = "0.4"
|
|
|
|
flate2 = "1"
|
2020-10-10 22:52:46 +03:00
|
|
|
anyhow = "1.0.33"
|
|
|
|
thiserror = "1.0.21"
|
2020-03-10 00:44:19 +03:00
|
|
|
rand = "0.7"
|
2020-03-16 00:09:44 +03:00
|
|
|
nfd = "0.0.4"
|
2020-06-18 20:29:31 +03:00
|
|
|
tauri-dialog = "0.1.0"
|
2020-07-02 16:46:00 +03:00
|
|
|
attohttpc = { version = "0.15.0", features = [ "json", "form" ] }
|
2020-05-11 23:03:58 +03:00
|
|
|
http = "0.2"
|
2020-06-18 19:55:21 +03:00
|
|
|
tauri-utils = { version = "0.5", path = "../tauri-utils" }
|
2020-06-15 05:36:35 +03:00
|
|
|
clap = { git = "https://github.com/clap-rs/clap", rev = "1a276f8", version = "3.0.0-beta.1", optional = true }
|
2020-06-17 18:27:36 +03:00
|
|
|
notify-rust = { version = "4.0.0", optional = true }
|
2020-08-21 00:03:46 +03:00
|
|
|
once_cell = "1.4.1"
|
2020-01-18 03:33:17 +03:00
|
|
|
|
2019-12-29 08:45:13 +03:00
|
|
|
[dev-dependencies]
|
2020-01-15 08:46:16 +03:00
|
|
|
quickcheck = "0.9.2"
|
|
|
|
quickcheck_macros = "0.9.1"
|
2020-06-15 05:36:35 +03:00
|
|
|
|
|
|
|
[features]
|
2020-06-18 19:55:21 +03:00
|
|
|
cli = [ "clap" ]
|
|
|
|
notification = [ "notify-rust" ]
|