Cargo.toml 710 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.56"
  22. serde = "1.0"
  23. serde_derive = "1.0"
  24. tiny_http = "0.7"
  25. phf = "0.8.0"
  26. includedir = "0.6.0"
  27. tauri = { path = "../../../../../../../tauri", features = [ "all-api", "edge" ] }
  28. [features]
  29. embedded-server = [ "tauri/embedded-server" ]
  30. no-server = [ "tauri/no-server" ]
  31. [[bin]]
  32. name = "app"
  33. path = "src/main.rs"