Cargo.toml 882 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "flowy-net"
  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. reqwest = "0.11"
  8. hyper = "0.14"
  9. protobuf = {version = "2.18.0"}
  10. serde = { version = "1.0", features = ["derive"] }
  11. serde_json = "1.0"
  12. serde_repr = "0.1"
  13. pin-project = "1.0.0"
  14. futures-core = { version = "0.3", default-features = false }
  15. log = "0.4"
  16. bytes = { version = "1.0", features = ["serde"]}
  17. lazy_static = "1.4.0"
  18. tokio = { version = "1", features = ["full"] }
  19. actix-web = {version = "4.0.0-beta.8", optional = true}
  20. derive_more = {version = "0.99", features = ["display"]}
  21. flowy-derive = { path = "../flowy-derive" }
  22. flowy-infra = { path = "../flowy-infra"}
  23. anyhow = "1.0"
  24. thiserror = "1.0.24"
  25. uuid = { version = "0.8", features = ["v4"] }
  26. [features]
  27. http_server = ["actix-web"]
  28. flowy_request = []