Cargo.toml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [package]
  2. name = "flowy-server"
  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. tracing = { version = "0.1" }
  8. futures = "0.3.26"
  9. futures-util = "0.3.26"
  10. reqwest = { version = "0.11.20", features = ["native-tls-vendored", "multipart","blocking"] }
  11. hyper = "0.14"
  12. config = { version = "0.10.1", default-features = false, features = ["yaml"] }
  13. serde = { version = "1.0", features = ["derive"] }
  14. serde_json = "1.0"
  15. serde-aux = "4.2.0"
  16. thiserror = "1.0"
  17. tokio = { version = "1.26", features = ["sync"]}
  18. parking_lot = "0.12"
  19. lazy_static = "1.4.0"
  20. bytes = { version = "1.5", features = ["serde"] }
  21. tokio-retry = "0.3"
  22. anyhow = "1.0"
  23. uuid = { version = "1.3.3", features = ["v4"] }
  24. chrono = { version = "0.4.31", default-features = false, features = ["clock"] }
  25. collab = { version = "0.1.0" }
  26. collab-plugins = { version = "0.1.0"}
  27. collab-document = { version = "0.1.0" }
  28. collab-entity = { version = "0.1.0" }
  29. hex = "0.4.3"
  30. postgrest = "1.0"
  31. lib-infra = { path = "../../../shared-lib/lib-infra" }
  32. flowy-user-deps = { workspace = true }
  33. flowy-folder-deps = { workspace = true }
  34. flowy-database-deps = { workspace = true }
  35. flowy-document-deps = { workspace = true }
  36. flowy-error = { workspace = true, features = ["impl_from_postgres", "impl_from_serde", "impl_from_reqwest", "impl_from_url", "impl_from_appflowy_cloud"] }
  37. flowy-server-config = { workspace = true }
  38. flowy-encrypt = { workspace = true }
  39. flowy-storage = { workspace = true }
  40. mime_guess = "2.0"
  41. url = "2.4"
  42. tokio-util = "0.7"
  43. tokio-stream = { version = "0.1.14", features = ["sync"] }
  44. client-api = { version = "0.1.0", features = ["collab-sync"] }
  45. [dev-dependencies]
  46. uuid = { version = "1.3.3", features = ["v4"] }
  47. tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
  48. dotenv = "0.15.0"
  49. yrs = "0.16.5"
  50. assert-json-diff = "2.0.2"
  51. serde_json = "1.0.104"
  52. client-api = { version = "0.1.0" }