Cargo.toml 866 B

123456789101112131415161718192021222324252627
  1. [package]
  2. name = "store-project"
  3. version = "0.1.0"
  4. description = "A application for store use to dish order"
  5. authors = ["奇幻旅行"]
  6. edition = "2024"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [lib]
  9. # The `_lib` suffix may seem redundant but it is necessary
  10. # to make the lib name unique and wouldn't conflict with the bin name.
  11. # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
  12. name = "tauri_app_lib"
  13. crate-type = ["staticlib", "cdylib", "rlib"]
  14. [build-dependencies]
  15. tauri-build = { version = "2", features = [] }
  16. [dependencies]
  17. tauri = { version = "2", features = [] }
  18. tauri-plugin-opener = "2"
  19. serde = { version = "1", features = ["derive"] }
  20. serde_json = "1"
  21. [dependencies.tauri-plugin-sql]
  22. features = ["sqlite"] # or "postgres", or "mysql"
  23. version = "2"