Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "flowy-workspace"
  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-dispatch = { path = "../flowy-dispatch" }
  8. flowy-derive = { path = "../flowy-derive" }
  9. flowy-database = { path = "../flowy-database" }
  10. flowy-sqlite = { path = "../flowy-sqlite" }
  11. flowy-infra = { path = "../flowy-infra" }
  12. flowy-dart-notify = { path = "../flowy-dart-notify" }
  13. flowy-document = { path = "../flowy-document" }
  14. flowy-ot = { path = "../flowy-ot" }
  15. flowy-net = { path = "../flowy-net", features = ["flowy_request"] }
  16. parking_lot = "0.11"
  17. protobuf = {version = "2.18.0"}
  18. log = "0.4.14"
  19. diesel = {version = "1.4.7", features = ["sqlite"]}
  20. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  21. #diesel = { git = "https://github.com/diesel-rs/diesel.git", branch = "master", features = ["sqlite"] }
  22. #diesel_derives = { git = "https://github.com/diesel-rs/diesel.git", branch = "master",features = ["sqlite"] }
  23. futures-core = { version = "0.3", default-features = false }
  24. futures = "0.3.15"
  25. pin-project = "1.0.0"
  26. strum = "0.21"
  27. strum_macros = "0.21"
  28. tokio = { version = "1", features = ["rt"] }
  29. lazy_static = "1.4.0"
  30. serde = { version = "1.0", features = ["derive"] }
  31. derive_more = {version = "0.99", features = ["display"]}
  32. bincode = { version = "1.3"}
  33. unicode-segmentation = "1.7.1"
  34. tracing = { version = "0.1", features = ["log"] }
  35. bytes = { version = "1.0" }
  36. [dev-dependencies]
  37. flowy-test = { path = "../flowy-test" }
  38. serial_test = "0.5.1"
  39. [features]
  40. http_server = []