Cargo.toml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 = "0.11.14"
  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.22", 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. hex = "0.4.3"
  29. postgrest = "1.0"
  30. lib-infra = { path = "../../../shared-lib/lib-infra" }
  31. flowy-user-deps = { path = "../flowy-user-deps" }
  32. flowy-folder-deps = { path = "../flowy-folder-deps" }
  33. flowy-database-deps = { path = "../flowy-database-deps" }
  34. flowy-document-deps = { path = "../flowy-document-deps" }
  35. flowy-error = { path = "../flowy-error", features = ["impl_from_postgres", "impl_from_serde", "impl_from_reqwest"] }
  36. flowy-server-config = { path = "../flowy-server-config" }
  37. [dev-dependencies]
  38. uuid = { version = "1.3.3", features = ["v4"] }
  39. tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
  40. dotenv = "0.15.0"
  41. yrs = "0.16.5"
  42. assert-json-diff = "2.0.2"
  43. serde_json = "1.0.104"