Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031
  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. tracing = { version = "0.1" }
  15. log = "0.4.14"
  16. futures-core = { version = "0.3", default-features = false }
  17. color-eyre = { version = "0.5", default-features = false }
  18. bytes = "1.0"
  19. [dev-dependencies]
  20. serde = { version = "1.0", features = ["derive"] }
  21. bincode = { version = "1.3"}
  22. protobuf = {version = "2.24.1"}
  23. claim = "0.5.0"
  24. tokio = { version = "1", features = ["full"]}
  25. futures-util = "0.3.15"
  26. [features]
  27. http_server = ["flowy-user/http_server", "flowy-workspace/http_server", "flowy-document/http_server"]
  28. use_bunyan = ["flowy-log/use_bunyan"]