2020-01-18 03:33:17 +03:00
|
|
|
[package]
|
|
|
|
name = "tauri-utils"
|
2020-06-11 22:18:38 +03:00
|
|
|
version = "0.5.1"
|
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>"]
|
2021-04-11 01:09:09 +03:00
|
|
|
license = "Apache-2.0 OR MIT"
|
2020-01-23 13:16:59 +03:00
|
|
|
homepage = "https://tauri.studio"
|
2020-01-18 03:33:17 +03:00
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Utilities for Tauri"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-03-13 04:10:19 +03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-02-09 21:22:04 +03:00
|
|
|
serde_json = "1.0"
|
2020-01-18 03:33:17 +03:00
|
|
|
sysinfo = "0.10"
|
2021-02-09 21:22:04 +03:00
|
|
|
thiserror = "1.0.19"
|
|
|
|
phf = { version = "0.8", features = ["macros"] }
|
2021-04-06 07:15:53 +03:00
|
|
|
zstd = "0.7"
|
2021-04-06 08:01:32 +03:00
|
|
|
url = { version = "2.2", features = ["serde"] }
|
2021-03-13 04:10:19 +03:00
|
|
|
|
|
|
|
# build feature only
|
|
|
|
proc-macro2 = { version = "1.0", optional = true }
|
|
|
|
quote = { version = "1.0", optional = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
build = [ "proc-macro2", "quote" ]
|