Cargo.toml 699 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. workspace = { }
  2. [package]
  3. name = "app"
  4. version = "0.1.0"
  5. description = "A Tauri App"
  6. author = [ "you" ]
  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. tauri = { version = "0.2.0", features = [ "edge" ] }
  28. [features]
  29. dev-server = [ "tauri/dev-server" ]
  30. embedded-server = [ "tauri/embedded-server" ]
  31. no-server = [ "tauri/no-server" ]
  32. [[bin]]
  33. name = "app"
  34. path = "src/main.rs"