Cargo.toml 679 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "tauri-macos-sign"
  3. version = "0.1.1-rc.1"
  4. authors = ["Tauri Programme within The Commons Conservancy"]
  5. license = "Apache-2.0 OR MIT"
  6. keywords = ["codesign", "signing", "macos", "ios", "tauri"]
  7. repository = "https://github.com/tauri-apps/tauri"
  8. description = "Code signing utilities for macOS and iOS apps"
  9. edition = "2021"
  10. rust-version = "1.71"
  11. [dependencies]
  12. anyhow = "1"
  13. serde = { version = "1", features = ["derive"] }
  14. serde_json = "1"
  15. tempfile = "3"
  16. x509-certificate = "0.23"
  17. once-cell-regex = "0.2"
  18. os_pipe = "1"
  19. plist = "1"
  20. rand = "0.8"
  21. dirs-next = "2"
  22. log = { version = "0.4.21", features = ["kv"] }
  23. apple-codesign = "0.27"
  24. chrono = "0.4.38"
  25. p12 = "0.6"