Cargo.toml 553 B

1234567891011121314151617181920212223
  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.56"
  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. default = [ "custom-protocol" ]
  18. custom-protocol = [ "tauri/custom-protocol" ]