Cargo.toml 1.7 KB

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