Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "flowy-sdk"
  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", features = ["use_tracing"]}
  8. flowy-log = { path = "../flowy-log" }
  9. flowy-user = { path = "../flowy-user" }
  10. flowy-infra = { path = "../flowy-infra" }
  11. flowy-workspace = { path = "../flowy-workspace" }
  12. flowy-database = { path = "../flowy-database" }
  13. flowy-document = { path = "../flowy-document" }
  14. flowy-ws = { path = "../flowy-ws" }
  15. flowy-net = { path = "../flowy-net" }
  16. tracing = { version = "0.1" }
  17. log = "0.4.14"
  18. futures-core = { version = "0.3", default-features = false }
  19. color-eyre = { version = "0.5", default-features = false }
  20. bytes = "1.0"
  21. tokio = { version = "1", features = ["rt"] }
  22. parking_lot = "0.11"
  23. [dev-dependencies]
  24. serde = { version = "1.0", features = ["derive"] }
  25. bincode = { version = "1.3"}
  26. protobuf = {version = "2.24.1"}
  27. claim = "0.5.0"
  28. tokio = { version = "1", features = ["full"]}
  29. futures-util = "0.3.15"
  30. [features]
  31. http_server = ["flowy-user/http_server", "flowy-workspace/http_server", "flowy-document/http_server"]
  32. use_bunyan = ["flowy-log/use_bunyan"]