tauri/tooling/webdriver/Cargo.toml

30 lines
829 B
TOML
Raw Normal View History

workspace = {}
2021-08-02 02:54:10 +00:00
[package]
name = "tauri-driver"
version = "0.1.5"
authors = ["Tauri Programme within The Commons Conservancy"]
categories = ["gui", "web-programming"]
2021-08-02 02:54:10 +00:00
license = "Apache-2.0 OR MIT"
homepage = "https://tauri.app"
2021-08-02 02:54:10 +00:00
repository = "https://github.com/tauri-apps/tauri"
description = "Webdriver server for Tauri applications"
readme = "README.md"
edition = "2021"
rust-version = "1.60"
2021-08-02 02:54:10 +00:00
[dependencies]
anyhow = "1"
hyper = { version = "0.14", features = ["client", "http1", "runtime", "server", "stream", "tcp"] }
2021-08-02 02:54:10 +00:00
futures = "0.3"
futures-util = "0.3"
2021-08-02 02:54:10 +00:00
pico-args = "0.4"
serde = { version = "1", features = ["derive"] }
2021-08-02 02:54:10 +00:00
serde_json = "1"
tokio = { version = "1", features = ["macros"] }
2021-08-02 02:54:10 +00:00
which = "4"
[target."cfg(unix)".dependencies]
signal-hook = "0.3"
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }