Cargo.toml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. [workspace]
  2. members = [ "node" ]
  3. [package]
  4. name = "tauri-cli"
  5. version = "2.0.0-alpha.8"
  6. authors = [ "Tauri Programme within The Commons Conservancy" ]
  7. edition = "2021"
  8. rust-version = "1.64"
  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. [features]
  36. openssl-vendored = [ "tauri-mobile/openssl-vendored" ]
  37. [dependencies]
  38. tauri-mobile = { version = "0.4", default-features = false }
  39. textwrap = { version = "0.11.0", features = [ "term_size" ] }
  40. jsonrpsee = { version = "0.16", features = [ "server" ] }
  41. jsonrpsee-core = "0.16"
  42. jsonrpsee-client-transport = { version = "0.16", features = [ "ws" ] }
  43. jsonrpsee-ws-client = { version = "0.16", default-features = false }
  44. thiserror.workspace = true = "1"
  45. sublime_fuzzy = "0.7"
  46. clap = { version = "4.0", features = [ "derive" ] }
  47. anyhow.workspace = true
  48. tauri-bundler = { version = "2.0.0-alpha.4", path = "../bundler" }
  49. colored = "2.0"
  50. once_cell = "1"
  51. serde.workspace = true
  52. serde_json.workspace = true
  53. notify = "5.0"
  54. notify-debouncer-mini = "0.2"
  55. shared_child = "1.0"
  56. duct = "0.13"
  57. toml_edit = "0.14"
  58. json-patch = "0.2"
  59. tauri-utils = { version = "2.0.0-alpha.4", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
  60. toml = "0.5"
  61. jsonschema = "0.16"
  62. handlebars = "4.3"
  63. include_dir = "0.7"
  64. minisign = "0.7"
  65. base64 = "0.21.0"
  66. ureq = "2.5"
  67. os_info = "3"
  68. semver = "1.0"
  69. regex = "1.6.0"
  70. unicode-width = "0.1"
  71. zeroize = "1.5"
  72. heck = { version = "0.4", features = [ "unicode" ] }
  73. dialoguer = "0.10"
  74. url.workspace = true
  75. os_pipe = "1"
  76. ignore = "0.4"
  77. ctrlc = "3.2"
  78. log = { version = "0.4.17", features = [ "kv_unstable", "kv_unstable_std" ] }
  79. env_logger = "0.9.1"
  80. icns = { package = "tauri-icns", version = "0.1" }
  81. image = { version = "0.24", default-features = false, features = [ "ico" ] }
  82. axum = { version = "0.5.16", features = [ "ws" ] }
  83. html5ever = "0.25"
  84. kuchiki = "0.8"
  85. tokio = { version = "1", features = [ "macros", "sync" ] }
  86. common-path = "1"
  87. serde-value = "0.7.0"
  88. itertools = "0.10"
  89. local-ip-address = "0.4"
  90. css-color = "0.2"
  91. [target."cfg(windows)".dependencies]
  92. winapi = { version = "0.3", features = [ "handleapi", "processenv", "winbase", "wincon", "winnt" ] }
  93. [target."cfg(unix)".dependencies]
  94. libc = "0.2"
  95. [profile.release]
  96. lto = true