Cargo.toml 583 B

123456789101112131415161718192021222324
  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. pin-project = "1.0.0"
  13. futures-core = { version = "0.3", default-features = false }
  14. log = "0.4"
  15. bytes = "1.0"
  16. lazy_static = "1.4.0"
  17. tokio = { version = "1", features = ["full"] }
  18. actix-web = {version = "4.0.0-beta.8", optional = true}
  19. [features]
  20. http = ["actix-web"]