Cargo.toml 1.6 KB

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