2019-12-22 22:04:45 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-api"
|
2020-03-28 18:49:37 +03:00
|
|
|
version = "0.5.0"
|
2020-05-22 01:25:03 +03:00
|
|
|
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"
|
|
|
|
exclude = ["test/fixture/**"]
|
|
|
|
|
|
|
|
[dependencies]
|
2020-02-09 18:42:23 +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-01-15 08:46:16 +03:00
|
|
|
ignore = "0.4.11"
|
|
|
|
zip = "0.5.4"
|
2019-12-22 22:04:45 +03:00
|
|
|
tempdir = "0.3"
|
|
|
|
semver = "0.9"
|
|
|
|
tempfile = "3"
|
|
|
|
either = "1.5.3"
|
|
|
|
tar = "0.4"
|
|
|
|
flate2 = "1"
|
2020-01-15 06:03:59 +03:00
|
|
|
error-chain = "0.12"
|
2020-03-10 00:44:19 +03:00
|
|
|
rand = "0.7"
|
2020-03-16 00:09:44 +03:00
|
|
|
nfd = "0.0.4"
|
2020-05-11 23:03:58 +03:00
|
|
|
attohttpc = {version = "0.13.0", features=["json", "form" ]}
|
|
|
|
http = "0.2"
|
2020-03-28 18:49:37 +03:00
|
|
|
tauri-utils = {version = "0.5", path = "../tauri-utils"}
|
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-01-15 06:03:59 +03:00
|
|
|
totems = "0.2.7"
|