Cargo.toml 435 B

1234567891011121314151617
  1. [package]
  2. name = "flowy-task"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. lib-infra = { path = "../../../shared-lib/lib-infra" }
  8. tokio = {version = "1", features = ["sync", "macros", ]}
  9. atomic_refcell = "0.1.8"
  10. anyhow = "1.0"
  11. tracing = { version = "0.1", features = ["log"] }
  12. [dev-dependencies]
  13. rand = "0.8.5"
  14. futures = "0.3.15"