Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. [package]
  2. name = "appflowy_tauri"
  3. version = "0.0.0"
  4. description = "A Tauri App"
  5. authors = ["you"]
  6. license = ""
  7. repository = ""
  8. edition = "2021"
  9. rust-version = "1.57"
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [build-dependencies]
  12. tauri-build = { version = "1.2", features = [] }
  13. [dependencies]
  14. serde_json = "1.0"
  15. serde = { version = "1.0", features = ["derive"] }
  16. tauri = { version = "1.2", features = ["shell-open"] }
  17. tauri-utils = "1.2"
  18. bytes = { version = "1.4" }
  19. tracing = { version = "0.1", features = ["log"] }
  20. lib-dispatch = { path = "../../rust-lib/lib-dispatch", features = ["use_serde"] }
  21. flowy-core = { path = "../../rust-lib/flowy-core", features = ["rev-sqlite","ts"] }
  22. flowy-notification = { path = "../../rust-lib/flowy-notification", features = ["ts"] }
  23. [features]
  24. # by default Tauri runs in production mode
  25. # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
  26. default = ["custom-protocol"]
  27. # this feature is used used for production builds where `devPath` points to the filesystem
  28. # DO NOT remove this
  29. custom-protocol = ["tauri/custom-protocol"]