Cargo.toml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [package]
  2. name = "flowy-document"
  3. version = "0.1.0"
  4. edition = "2018"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. flowy-collaboration = { path = "../../../shared-lib/flowy-collaboration" }
  8. flowy-derive = { path = "../../../shared-lib/flowy-derive" }
  9. lib-ot = { path = "../../../shared-lib/lib-ot" }
  10. lib-ws = { path = "../../../shared-lib/lib-ws" }
  11. lib-infra = { path = "../../../shared-lib/lib-infra" }
  12. derive_more = {version = "0.99", features = ["display"]}
  13. lib-dispatch = { path = "../lib-dispatch" }
  14. flowy-database = { path = "../flowy-database" }
  15. flowy-error = { path = "../flowy-error", features = ["collaboration", "ot", "backend", "serde", "db"] }
  16. dart-notify = { path = "../dart-notify" }
  17. diesel = {version = "1.4.8", features = ["sqlite"]}
  18. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  19. protobuf = {version = "2.18.0"}
  20. unicode-segmentation = "1.8"
  21. log = "0.4.14"
  22. tokio = {version = "1", features = ["sync"]}
  23. tracing = { version = "0.1", features = ["log"] }
  24. bytes = { version = "1.1" }
  25. strum = "0.21"
  26. strum_macros = "0.21"
  27. dashmap = "4.0"
  28. parking_lot = "0.11"
  29. bytecount = "0.6.0"
  30. url = "2.2"
  31. serde = { version = "1.0", features = ["derive"] }
  32. serde_json = {version = "1.0"}
  33. chrono = "0.4.19"
  34. futures-util = "0.3.15"
  35. byteorder = {version = "1.3.4"}
  36. async-stream = "0.3.2"
  37. futures = "0.3.15"
  38. pin-project = "1.0.0"
  39. [dev-dependencies]
  40. flowy-test = { path = "../flowy-test" }
  41. flowy-document = { path = "../flowy-document", features = ["flowy_unit_test"]}
  42. flowy-net = { path = "../flowy-net" }
  43. color-eyre = { version = "0.5", default-features = false }
  44. criterion = "0.3"
  45. rand = "0.7.3"
  46. [features]
  47. http_server = []
  48. flowy_unit_test = ["lib-ot/flowy_unit_test"]