Cargo.toml 524 B

12345678910111213141516171819202122
  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. protobuf = {version = "2.18.0"}
  9. serde = { version = "1.0", features = ["derive"] }
  10. serde_json = "1.0"
  11. serde_repr = "0.1"
  12. actix-web = {version = "3", optional = true}
  13. pin-project = "1.0.0"
  14. futures-core = { version = "0.3", default-features = false }
  15. log = "0.4"
  16. bytes = "1.0"
  17. lazy_static = "1.4.0"
  18. [features]
  19. http = ["actix-web"]