mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-17 23:51:43 +03:00
29 lines
884 B
TOML
29 lines
884 B
TOML
|
workspace = { }
|
||
|
|
||
|
[package]
|
||
|
name = "tauri-driver"
|
||
|
version = "0.0.0"
|
||
|
authors = ["Tauri Programme within The Commons Conservancy"]
|
||
|
categories = ["gui", "web-programming"]
|
||
|
license = "Apache-2.0 OR MIT"
|
||
|
homepage = "https://tauri.studio"
|
||
|
repository = "https://github.com/tauri-apps/tauri"
|
||
|
description = "Webdriver server for Tauri applications"
|
||
|
readme = "README.md"
|
||
|
exclude = [".license_template", "/target"]
|
||
|
edition = "2018"
|
||
|
|
||
|
[dependencies]
|
||
|
anyhow = "1"
|
||
|
hyper = { version = "0.14", features = [ "client", "http1", "runtime", "server", "stream", "tcp" ] }
|
||
|
futures = "0.3"
|
||
|
pico-args = "0.4"
|
||
|
serde = { version = "1", features = [ "derive" ] }
|
||
|
serde_json = "1"
|
||
|
tokio = { version = "1", features = [ "macros" ] } # other required features enabled by hyper
|
||
|
which = "4"
|
||
|
|
||
|
[target."cfg(unix)".dependencies]
|
||
|
signal-hook = "0.3"
|
||
|
signal-hook-tokio = { version = "0.3", features = [ "futures-v0_3" ] }
|