2019-12-22 22:04:45 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-api"
|
2020-11-10 17:04:39 +03:00
|
|
|
version = "0.7.5"
|
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-12-05 05:45:18 +03:00
|
|
|
dirs-next = "2.0.0"
|
2020-12-12 21:48:35 +03:00
|
|
|
zip = "0.5.9"
|
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"
|
2021-01-24 20:29:16 +03:00
|
|
|
anyhow = "1.0.38"
|
2021-01-06 13:48:00 +03:00
|
|
|
thiserror = "1.0.23"
|
|
|
|
rand = "0.8"
|
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"
|
2021-01-24 20:29:16 +03:00
|
|
|
attohttpc = { version = "0.16.1", 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" }
|
2021-02-09 00:41:36 +03:00
|
|
|
clap = { git = "https://github.com/clap-rs/clap", rev = "1a276f8", version = "=3.0.0-beta.1", optional = true }
|
2021-01-24 20:29:16 +03:00
|
|
|
notify-rust = { version = "4.2.2", optional = true }
|
2020-12-05 05:46:20 +03:00
|
|
|
once_cell = "1.5.2"
|
2020-01-18 03:33:17 +03:00
|
|
|
|
2019-12-29 08:45:13 +03:00
|
|
|
[dev-dependencies]
|
2021-01-24 20:28:05 +03:00
|
|
|
quickcheck = "1.0.3"
|
|
|
|
quickcheck_macros = "1.0.0"
|
2020-06-15 05:36:35 +03:00
|
|
|
|
|
|
|
[features]
|
2020-06-18 19:55:21 +03:00
|
|
|
cli = [ "clap" ]
|
|
|
|
notification = [ "notify-rust" ]
|