Cargo.toml 974 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "rested"
  3. version = "0.1.0"
  4. description = "Rest made easy"
  5. authors = ["biblius"]
  6. edition = "2021"
  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 = "rested_lib"
  13. crate-type = ["staticlib", "cdylib", "rlib"]
  14. rested-data = { path = "../src-data" }
  15. [build-dependencies]
  16. tauri-build = { version = "2", features = [] }
  17. [dependencies]
  18. tauri = { version = "2", features = [] }
  19. tauri-plugin-opener = "2"
  20. serde = { version = "1", features = ["derive"] }
  21. serde_json = "1"
  22. sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio"] }
  23. boa_engine = "0.19.0"
  24. reqwest = "0.12.15"
  25. tauri-plugin-log = "2.3.1"
  26. log = "0.4.27"
  27. tokio = { version = "1.44.1", features = ["macros"] }