Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [package]
  2. name = "flowy-test"
  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-sdk = { path = "../flowy-sdk", default-features = false }
  8. flowy-user = { path = "../flowy-user"}
  9. flowy-net = { path = "../flowy-net"}
  10. flowy-folder = { path = "../flowy-folder", default-features = false}
  11. lib-dispatch = { path = "../lib-dispatch" }
  12. flowy-sync = { path = "../../../shared-lib/flowy-sync" }
  13. lib-ot = { path = "../../../shared-lib/lib-ot" }
  14. lib-infra = { path = "../../../shared-lib/lib-infra" }
  15. serde = { version = "1.0", features = ["derive"] }
  16. serde_json = {version = "1.0"}
  17. bincode = { version = "1.3"}
  18. protobuf = {version = "2.24.1"}
  19. claim = "0.5.0"
  20. tokio = { version = "1", features = ["full"]}
  21. futures-util = "0.3.15"
  22. thread-id = "3.3.0"
  23. log = "0.4"
  24. bytes = "1.0"
  25. nanoid = "0.4.0"
  26. [dev-dependencies]
  27. quickcheck = "1.0.3"
  28. quickcheck_macros = "0.9.1"
  29. fake = "2.4.3"
  30. claim = "0.4.0"
  31. futures = "0.3.15"
  32. serial_test = "0.5.1"
  33. [features]
  34. dart = ["flowy-sdk/dart"]