Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. workspace = { }
  2. [package]
  3. name = "tauri-bundler"
  4. version = "0.9.1"
  5. authors = [
  6. "George Burton <burtonageo@gmail.com>",
  7. "Lucas Fernandes Gonçalves Nogueira <lucas@tauri.studio>",
  8. "Daniel Thompson-Yvetot <denjell@sfosc.org>",
  9. "Tensor Programming <tensordeveloper@gmail.com>"
  10. ]
  11. categories = [ "command-line-utilities", "development-tools::cargo-plugins" ]
  12. license = "MIT/Apache-2.0"
  13. keywords = [ "bundle", "cargo", "tauri" ]
  14. repository = "https://github.com/tauri-apps/tauri"
  15. description = "Wrap rust executables in OS-specific app bundles for Tauri"
  16. edition = "2018"
  17. [dependencies]
  18. ar = "0.8.0"
  19. chrono = "0.4"
  20. clap = "^2"
  21. dirs = "2.0.2"
  22. glob = "0.3.0"
  23. icns = "0.3"
  24. image = "0.23.7"
  25. libflate = "1.0"
  26. md5 = "0.7.0"
  27. msi = "0.2"
  28. anyhow = "1.0"
  29. thiserror = "1.0"
  30. serde_json = "1.0"
  31. serde = { version = "1.0", features = [ "derive" ] }
  32. strsim = "0.10.0"
  33. tar = "0.4"
  34. target_build_utils = "0.3"
  35. term = "0.6.1"
  36. toml = "0.5.6"
  37. uuid = { version = "0.8", features = [ "v5" ] }
  38. walkdir = "2"
  39. lazy_static = { version = "1.4" }
  40. handlebars = { version = "3.3" }
  41. [target."cfg(target_os = \"windows\")".dependencies]
  42. attohttpc = { version = "0.15.0" }
  43. regex = { version = "1" }
  44. runas = "0.2"
  45. [target."cfg(not(target_os = \"linux\"))".dependencies]
  46. zip = { version = "0.5" }
  47. sha2 = { version = "0.9" }
  48. hex = { version = "0.4" }
  49. [dev-dependencies]
  50. tempfile = "3"
  51. [[bin]]
  52. name = "cargo-tauri-bundler"
  53. path = "src/main.rs"