Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. workspace = { }
  2. [package]
  3. name = "tauri-cli"
  4. version = "1.0.0-beta.5"
  5. authors = [ "Tauri Programme within The Commons Conservancy" ]
  6. edition = "2018"
  7. categories = [ "gui", "web-programming" ]
  8. license = "Apache-2.0 OR MIT"
  9. homepage = "https://tauri.studio"
  10. repository = "https://github.com/tauri-apps/tauri"
  11. description = "Command line interface for building Tauri apps"
  12. include = [ "src/", "/templates", "MergeModules/", "*.json", "*.rs" ]
  13. [[bin]]
  14. name = "cargo-tauri"
  15. path = "src/main.rs"
  16. [dependencies]
  17. clap = { version = "3.0.0-beta.2", features = [ "yaml" ] }
  18. anyhow = "1.0"
  19. tauri-bundler = { version = "1.0.0-beta.3", path = "../bundler" }
  20. colored = "2.0"
  21. once_cell = "1.8"
  22. serde = { version = "1.0", features = [ "derive" ] }
  23. serde_json = "1.0"
  24. serde_with = "1.9"
  25. notify = "4.0"
  26. shared_child = "0.3"
  27. toml_edit = "0.2"
  28. json-patch = "0.2"
  29. schemars = "0.8"
  30. toml = "0.5"
  31. valico = "3.6"
  32. handlebars = "4.1"
  33. include_dir = "0.6"
  34. minisign = "0.6"
  35. base64 = "0.13.0"
  36. ureq = "2.1"
  37. os_info = "3.0"
  38. semver = "1.0"
  39. regex = "1.5"
  40. lazy_static = "1"
  41. libc = "0.2"
  42. terminal_size = "0.1"
  43. unicode-width = "0.1"
  44. tempfile = "3"
  45. zeroize = "1.3"
  46. [target."cfg(windows)".dependencies]
  47. winapi = { version = "0.3", features = [ "winbase", "winuser", "consoleapi", "processenv", "wincon" ] }
  48. encode_unicode = "0.3"
  49. [target."cfg(target_os = \"linux\")".dependencies]
  50. heck = "0.3"
  51. [build-dependencies]
  52. schemars = "0.8"
  53. serde = { version = "1.0", features = [ "derive" ] }
  54. serde_json = "1.0"
  55. serde_with = "1.9"