Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-ws = { path = "../flowy-ws" }
  15. flowy-net = { path = "../flowy-net", features = ["flowy_request"] }
  16. diesel = {version = "1.4.7", features = ["sqlite"]}
  17. diesel_derives = {version = "1.4.1", features = ["sqlite"]}
  18. protobuf = {version = "2.18.0"}
  19. unicode-segmentation = "1.7.1"
  20. lazy_static = "1.4.0"
  21. log = "0.4.14"
  22. tokio = {version = "1", features = ["sync"]}
  23. tracing = { version = "0.1", features = ["log"] }
  24. bytes = { version = "1.0" }
  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-core = { version = "0.3", default-features = false }
  35. md5 = "0.7.0"
  36. byteorder = {version = "1.3.4"}
  37. [dev-dependencies]
  38. flowy-test = { path = "../flowy-test" }
  39. color-eyre = { version = "0.5", default-features = false }
  40. criterion = "0.3"
  41. rand = "0.7.3"
  42. env_logger = "0.8.2"
  43. [features]
  44. http_server = []
  45. flowy_test = []