Cargo.toml 521 B

12345678910111213141516171819202122
  1. [package]
  2. name = "tauri_app"
  3. version = "0.1.0"
  4. description = "A very simple Dll Library that runs tauri and launches a webview window"
  5. edition = "2021"
  6. rust-version = "1.60"
  7. [workspace]
  8. [lib]
  9. crate-type = ["cdylib"]
  10. [build-dependencies]
  11. tauri-build = { path = "../../../core/tauri-build", features = [ "codegen" ] }
  12. [dependencies]
  13. serde_json = "1.0"
  14. serde = { version = "1.0", features = [ "derive" ] }
  15. tauri = { path = "../../../core/tauri", features = [] }
  16. [features]
  17. custom-protocol = [ "tauri/custom-protocol" ]