Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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-log = { path = "../flowy-log" }
  9. flowy-derive = { path = "../flowy-derive" }
  10. flowy-database = { path = "../flowy-database" }
  11. flowy-sqlite = { path = "../flowy-sqlite" }
  12. flowy-infra = { path = "../flowy-infra" }
  13. flowy-observable = { path = "../flowy-observable" }
  14. flowy-net = { path = "../flowy-net" }
  15. protobuf = {version = "2.18.0"}
  16. log = "0.4.14"
  17. diesel = {version = "1.4.7", features = ["sqlite"]}
  18. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  19. futures-core = { version = "0.3", default-features = false }
  20. pin-project = "1.0.0"
  21. strum = "0.21"
  22. strum_macros = "0.21"
  23. tokio = { version = "1", features = ["rt"] }
  24. lazy_static = "1.4.0"
  25. serde = { version = "1.0", features = ["derive"] }
  26. derive_more = {version = "0.99", features = ["display"]}
  27. bincode = { version = "1.3"}
  28. unicode-segmentation = "1.7.1"
  29. tracing = { version = "0.1", features = ["log"] }
  30. bytes = { version = "1.0" }
  31. [dev-dependencies]
  32. flowy-test = { path = "../flowy-test" }
  33. serial_test = "0.5.1"
  34. [features]
  35. http_server = []