Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. derive_more = {version = "0.99", features = ["display"]}
  8. flowy-dispatch = { path = "../flowy-dispatch" }
  9. flowy-derive = { path = "../flowy-derive" }
  10. flowy-database = { path = "../flowy-database" }
  11. flowy-infra = { path = "../flowy-infra" }
  12. flowy-observable = { path = "../flowy-observable" }
  13. flowy-ot = { path = "../flowy-ot" }
  14. flowy-net = { path = "../flowy-net", features = ["flowy_request"] }
  15. diesel = {version = "1.4.7", features = ["sqlite"]}
  16. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  17. protobuf = {version = "2.18.0"}
  18. unicode-segmentation = "1.7.1"
  19. lazy_static = "1.4.0"
  20. log = "0.4.14"
  21. tokio = {version = "1.6.0", features = ["sync"]}
  22. tracing = { version = "0.1", features = ["log"] }
  23. bytes = { version = "1.0" }
  24. strum = "0.21"
  25. strum_macros = "0.21"
  26. dashmap = "4.0"
  27. [dev-dependencies]
  28. flowy-test = { path = "../flowy-test" }
  29. [features]
  30. http_server = []