Cargo.toml 616 B

123456789101112131415161718
  1. [package]
  2. name = "flowy-user-deps"
  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. flowy-error = { path = "../flowy-error" }
  9. uuid = { version = "1.3.3", features = ["v4"] }
  10. serde = { version = "1.0", features = ["derive"] }
  11. collab-define = { version = "0.1.0" }
  12. serde_json = {version = "1.0"}
  13. serde_repr = "0.1"
  14. chrono = { version = "0.4.22", default-features = false, features = ["clock"] }
  15. anyhow = "1.0.71"
  16. tokio = { version = "1.26", features = ["sync"] }