Cargo.toml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. [workspace]
  2. members = [ "node" ]
  3. [package]
  4. name = "tauri-cli"
  5. version = "1.2.3"
  6. authors = [ "Tauri Programme within The Commons Conservancy" ]
  7. edition = "2021"
  8. rust-version = "1.59"
  9. categories = [ "gui", "web-programming" ]
  10. license = "Apache-2.0 OR MIT"
  11. homepage = "https://tauri.app"
  12. repository = "https://github.com/tauri-apps/tauri"
  13. description = "Command line interface for building Tauri apps"
  14. include = [
  15. "src/",
  16. "/templates",
  17. "scripts/",
  18. "*.json",
  19. "*.rs",
  20. "tauri.gitignore",
  21. "tauri-dev-watcher.gitignore",
  22. "LICENSE*"
  23. ]
  24. [package.metadata.binstall]
  25. pkg-url = "{ repo }/releases/download/cli.rs-v{ version }/cargo-tauri-{ target }.{ archive-format }"
  26. bin-dir = "{ bin }{ binary-ext }"
  27. pkg-fmt = "tgz"
  28. [package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
  29. pkg-fmt = "zip"
  30. [package.metadata.binstall.overrides.x86_64-apple-darwin]
  31. pkg-fmt = "zip"
  32. [[bin]]
  33. name = "cargo-tauri"
  34. path = "src/main.rs"
  35. [dependencies]
  36. clap = { version = "4.0", features = [ "derive" ] }
  37. anyhow = "1.0"
  38. tauri-bundler = { version = "1.1.2", path = "../bundler" }
  39. colored = "2.0"
  40. once_cell = "1"
  41. serde = { version = "1.0", features = [ "derive" ] }
  42. serde_json = "1.0"
  43. notify = "5.0"
  44. notify-debouncer-mini = "0.2"
  45. shared_child = "1.0"
  46. toml_edit = "0.14"
  47. json-patch = "0.2"
  48. tauri-utils = { version = "1.2.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
  49. toml = "0.5"
  50. jsonschema = "0.16"
  51. handlebars = "4.3"
  52. include_dir = "0.7"
  53. minisign = "0.7"
  54. base64 = "0.21.0"
  55. ureq = "2.5"
  56. os_info = "3.5"
  57. semver = "1.0"
  58. regex = "1.6.0"
  59. unicode-width = "0.1"
  60. zeroize = "1.5"
  61. heck = { version = "0.4", features = [ "unicode" ] }
  62. dialoguer = "0.10"
  63. url = { version = "2.3", features = [ "serde" ] }
  64. os_pipe = "1"
  65. ignore = "=0.4.18"
  66. ctrlc = "3.2"
  67. log = { version = "0.4.17", features = [ "kv_unstable", "kv_unstable_std" ] }
  68. env_logger = "0.9.1"
  69. icns = { package = "tauri-icns", version = "0.1" }
  70. image = { version = "0.24", default-features = false, features = [ "ico" ] }
  71. axum = { version = "0.5.16", features = [ "ws" ] }
  72. html5ever = "0.25"
  73. kuchiki = "0.8"
  74. tokio = { version = "1", features = [ "macros", "sync" ] }
  75. common-path = "1"
  76. serde-value = "0.7.0"
  77. itertools = "0.10"
  78. [target."cfg(windows)".dependencies]
  79. winapi = { version = "0.3", features = [ "handleapi", "processenv", "winbase", "wincon", "winnt" ] }
  80. [target."cfg(unix)".dependencies]
  81. libc = "0.2"
  82. [profile.release]
  83. lto = true