Cargo.toml 668 B

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