Cargo.toml 1000 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [package]
  2. name = "flowy-sys"
  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. pin-project = "1.0.0"
  8. futures-core = { version = "0.3", default-features = false }
  9. paste = "1"
  10. futures-channel = "0.3.15"
  11. futures = "0.3.15"
  12. futures-util = "0.3.15"
  13. bytes = "0.5"
  14. tokio = { version = "1", features = ["full"] }
  15. uuid = { version = "0.8", features = ["serde", "v4"] }
  16. log = "0.4.14"
  17. env_logger = "0.8"
  18. serde_with = "1.9.4"
  19. thread-id = "3.3.0"
  20. lazy_static = "1.4.0"
  21. dyn-clone = "1.0"
  22. derivative = "2.2.0"
  23. #optional crate
  24. bincode = { version = "1.3", optional = true}
  25. serde = { version = "1.0", features = ["derive"], optional = true }
  26. serde_json = {version = "1.0", optional = true}
  27. protobuf = {version = "2.24.1", optional = true}
  28. [dev-dependencies]
  29. tokio = { version = "1", features = ["full"] }
  30. futures-util = "0.3.15"
  31. [features]
  32. use_serde = ["bincode", "serde", "serde_json"]
  33. use_protobuf= ["protobuf"]