Cargo.toml 705 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. workspace = { }
  2. [package]
  3. name = "app"
  4. version = "0.1.0"
  5. description = "A Tauri App"
  6. author = [ "Daniel Thompson-Yvetot" ]
  7. license = ""
  8. repository = ""
  9. default-run = "app"
  10. edition = "2018"
  11. [package.metadata.bundle]
  12. identifier = "com.tauri.dev"
  13. icon = [
  14. "icons/32x32.png",
  15. "icons/128x128.png",
  16. "icons/128x128@2x.png",
  17. "icons/icon.icns",
  18. "icons/icon.ico"
  19. ]
  20. [dependencies]
  21. serde_json = "1.0.41"
  22. serde = "1.0"
  23. serde_derive = "1.0"
  24. tiny_http = "0.6"
  25. phf = "0.7.24"
  26. includedir = "0.5.0"
  27. [dependencies.tauri]
  28. path = "../../../../tauri"
  29. features = [ "all-api", "edge" ]
  30. [features]
  31. dev = [ "tauri/dev" ]
  32. embedded-server = [ "tauri/embedded-server" ]
  33. [[bin]]
  34. name = "app"
  35. path = "src/main.rs"