Cargo.toml 642 B

1234567891011121314151617181920
  1. [package]
  2. name = "flowy-sync"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. lib-ot = { path = "../lib-ot" }
  8. lib-infra = { path = "../lib-infra" }
  9. revision-model = { path = "../revision-model" }
  10. folder-model = { path = "../folder-model" }
  11. ws-model = { path = "../ws-model" }
  12. document-model = { path = "../document-model" }
  13. strum = "0.21"
  14. strum_macros = "0.21"
  15. parking_lot = "0.12.1"
  16. tokio = { version = "1.26", features = ["full"] }
  17. serde = { version = "1.0", features = ["derive", "rc"] }
  18. tracing = { version = "0.1", features = ["log"] }