Cargo.toml 867 B

123456789101112131415161718192021222324252627282930
  1. [package]
  2. name = "backend-service"
  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-workspace-infra = { path = "../flowy-workspace-infra" }
  8. flowy-user-infra = { path = "../flowy-user-infra" }
  9. log = "0.4.14"
  10. lazy_static = "1.4.0"
  11. tokio = { version = "1", features = ["rt"] }
  12. anyhow = "1.0"
  13. thiserror = "1.0.24"
  14. bytes = { version = "1.0", features = ["serde"]}
  15. reqwest = "0.11"
  16. hyper = "0.14"
  17. serde = { version = "1.0", features = ["derive"] }
  18. serde_json = "1.0"
  19. serde_repr = "0.1"
  20. uuid = { version = "0.8", features = ["v4"] }
  21. protobuf = {version = "2.18.0"}
  22. derive_more = {version = "0.99", features = ["display"]}
  23. tracing = { version = "0.1", features = ["log"] }
  24. actix-web = {version = "4.0.0-beta.8", optional = true}
  25. [features]
  26. http_server = ["actix-web"]