Cargo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. [package]
  2. name = "tauri-app"
  3. version = "0.0.1"
  4. description = "A System Tools Tauri App"
  5. authors = ["Johnhong9527"]
  6. license = ""
  7. repository = "https://github.com/Johnhong9527/tauri-app.git"
  8. edition = "2021"
  9. rust-version = "1.78.0"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. # https://docs.rs/tensorflow/0.19.1/tensorflow/
  12. [build-dependencies]
  13. tauri-build = {version = "1.5.2", features = [] }
  14. [dependencies]
  15. serde_json = "1.0.117"
  16. rusqlite = {version = "0.29.0", features = ["bundled"] }
  17. thiserror = "1.0.61"
  18. serde = { version = "1.0", features = ["derive"] }
  19. tauri = {version = "1.5.2", features = ["api-all"] }
  20. uuid = "1.8.0"
  21. regex = "1.10.4"
  22. sha2 = "0.10.8"
  23. hex = "0.4.3"
  24. anyhow = "1"
  25. async-trait = "0.1.80"
  26. tracing = "0.1.40"
  27. tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
  28. lazy_static = "1.4.0"
  29. home = "0.5.9"
  30. trash = "1.3"
  31. [dependencies.tauri-plugin-sql]
  32. git = "https://gitee.com/seamong/plugins-workspace"
  33. branch = "v1"
  34. features = ["sqlite"] # or "postgres", or "mysql"
  35. [dependencies.tauri-plugin-persisted-scope]
  36. git = "https://gitee.com/seamong/plugins-workspace"
  37. branch = "v1"
  38. [workspace]
  39. #members = ["modules"]
  40. [features]
  41. # by default Tauri runs in production mode
  42. # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
  43. default = [ "custom-protocol" ]
  44. # this feature is used used for production builds where `devPath` points to the filesystem
  45. # DO NOT remove this
  46. custom-protocol = [ "tauri/custom-protocol" ]