Cargo.toml 510 B

1234567891011121314151617
  1. [package]
  2. name = "flowy-storage"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. reqwest = { version = "0.11", features = ["json", "stream"] }
  8. serde_json = "1.0"
  9. serde = { version = "1.0", features = ["derive"] }
  10. async-trait = "0.1.73"
  11. bytes = "1.0.1"
  12. mime_guess = "2.0"
  13. lib-infra = { path = "../../../shared-lib/lib-infra" }
  14. url = "2.2.2"
  15. flowy-error = { workspace = true, features = ["impl_from_reqwest"] }