Cargo.toml 830 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "tauri-driver"
  3. version = "2.0.0"
  4. authors = ["Tauri Programme within The Commons Conservancy"]
  5. categories = ["gui", "web-programming"]
  6. license = "Apache-2.0 OR MIT"
  7. homepage = "https://tauri.app"
  8. repository = "https://github.com/tauri-apps/tauri"
  9. description = "Webdriver server for Tauri applications"
  10. readme = "README.md"
  11. edition = "2021"
  12. rust-version = "1.77.2"
  13. [dependencies]
  14. anyhow = "1"
  15. hyper = { version = "0.14", features = [
  16. "client",
  17. "http1",
  18. "runtime",
  19. "server",
  20. "stream",
  21. "tcp",
  22. ] }
  23. futures = "0.3"
  24. futures-util = "0.3"
  25. pico-args = "0.4"
  26. serde = { version = "1", features = ["derive"] }
  27. serde_json = "1"
  28. tokio = { version = "1", features = ["macros"] }
  29. which = "4"
  30. [target."cfg(unix)".dependencies]
  31. signal-hook = "0.3"
  32. signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }