Cargo.toml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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.0.1", features = ["serde"] }
  21. tokio-retry = "0.3"
  22. anyhow = "1.0"
  23. uuid = { version = "1.3.3", features = ["v4"] }
  24. chrono = { version = "0.4.27", default-features = false, features = ["clock"] }
  25. collab = { version = "0.1.0" }
  26. collab-plugins = { version = "0.1.0", features = ["sync_plugin"] }
  27. collab-document = { version = "0.1.0" }
  28. collab-define = { 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. client-api = { version = "0.1.0" }
  44. [dev-dependencies]
  45. uuid = { version = "1.3.3", features = ["v4"] }
  46. tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
  47. dotenv = "0.15.0"
  48. yrs = "0.16.5"
  49. assert-json-diff = "2.0.2"
  50. serde_json = "1.0.104"