12345678910111213141516171819202122232425262728 |
- workspace = { }
- [package]
- name = "helloworld"
- version = "0.1.0"
- description = "A Tauri App"
- authors = [ "you" ]
- license = ""
- repository = ""
- default-run = "helloworld"
- edition = "2018"
- build = "src/build.rs"
- [dependencies]
- serde_json = "1.0"
- serde = { version = "1.0", features = [ "derive" ] }
- tauri = { path = "../../..", features =["api-all"]}
- [target."cfg(windows)".build-dependencies]
- winres = "0.1"
- [features]
- default = [ "custom-protocol" ]
- custom-protocol = [ "tauri/custom-protocol" ]
- [[bin]]
- name = "helloworld"
- path = "src/main.rs"
|