Cargo.toml 866 B

1234567891011121314151617181920212223242526272829
  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. exclude = [ ".license_template", "/target" ]
  13. edition = "2021"
  14. rust-version = "1.57"
  15. [dependencies]
  16. anyhow = "1"
  17. hyper = { version = "0.14", features = [ "client", "http1", "runtime", "server", "stream", "tcp" ] }
  18. futures = "0.3"
  19. pico-args = "0.4"
  20. serde = { version = "1", features = [ "derive" ] }
  21. serde_json = "1"
  22. tokio = { version = "1", features = [ "macros" ] }
  23. which = "4"
  24. [target."cfg(unix)".dependencies]
  25. signal-hook = "0.3"
  26. signal-hook-tokio = { version = "0.3", features = [ "futures-v0_3" ] }