Cargo.toml 971 B

123456789101112131415161718192021222324252627282930313233343536
  1. [package]
  2. name = "flowy-server"
  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. tracing = { version = "0.1" }
  8. futures-util = "0.3.26"
  9. reqwest = "0.11.14"
  10. hyper = "0.14"
  11. config = { version = "0.10.1", default-features = false, features = ["yaml"] }
  12. serde = { version = "1.0", features = ["derive"] }
  13. serde_json = "1.0"
  14. serde-aux = "4.2.0"
  15. nanoid = "0.4.0"
  16. thiserror = "1.0"
  17. tokio = { version = "1.26", features = ["sync"]}
  18. parking_lot = "0.12"
  19. lazy_static = "1.4.0"
  20. bytes = "1.0.1"
  21. postgrest = "1.0"
  22. tokio-retry = "0.3"
  23. anyhow = "1.0"
  24. uuid = { version = "1.3.3", features = ["v4"] }
  25. chrono = "0.4.24"
  26. lib-infra = { path = "../../../shared-lib/lib-infra" }
  27. flowy-user = { path = "../flowy-user" }
  28. flowy-folder2 = { path = "../flowy-folder2" }
  29. flowy-error = { path = "../flowy-error" }
  30. [dev-dependencies]
  31. uuid = { version = "1.3.3", features = ["v4"] }
  32. dotenv = "0.15.0"