Cargo.toml 821 B

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