Cargo.toml 528 B

12345678910111213141516
  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. serde_json = {version = "1.0"}
  12. serde_repr = "0.1"
  13. chrono = { version = "0.4.22", default-features = false, features = ["clock"] }
  14. anyhow = "1.0.71"