2019-12-22 22:04:45 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-api"
|
2020-06-18 19:55:21 +03:00
|
|
|
version = "0.6.0"
|
|
|
|
authors = [
|
|
|
|
"Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
|
|
|
|
"Daniel Thompson-Yvetot <denjell@sfosc.org>",
|
|
|
|
"Tensor Programming <tensordeveloper@gmail.com>"
|
|
|
|
]
|
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"
|
2019-12-22 22:04:45 +03:00
|
|
|
dirs = "2.0.2"
|
2020-05-30 15:02:13 +03:00
|
|
|
ignore = "0.4.16"
|
2020-06-17 18:27:36 +03:00
|
|
|
zip = "0.5.6"
|
2020-05-30 15:02:13 +03:00
|
|
|
semver = "0.10"
|
2019-12-22 22:04:45 +03:00
|
|
|
tempfile = "3"
|
|
|
|
either = "1.5.3"
|
|
|
|
tar = "0.4"
|
|
|
|
flate2 = "1"
|
2020-05-30 02:22:04 +03:00
|
|
|
anyhow = "1.0.31"
|
2020-06-17 18:27:36 +03:00
|
|
|
thiserror = "1.0.20"
|
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-15 07:09:02 +03:00
|
|
|
tauri-dialog = { git = "https://github.com/tauri-apps/tauri-dialog-rs", version = "0.1" }
|
2020-06-18 19:55:21 +03:00
|
|
|
attohttpc = { version = "0.14.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-06-17 19:05:51 +03:00
|
|
|
once_cell = "1.4.0"
|
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-05-23 18:21:42 +03:00
|
|
|
totems = "0.2.7"
|
2020-06-15 05:36:35 +03:00
|
|
|
|
|
|
|
[features]
|
2020-06-18 19:55:21 +03:00
|
|
|
cli = [ "clap" ]
|
|
|
|
notification = [ "notify-rust" ]
|