Cargo.toml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. [package]
  2. name = "dim-web"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [features]
  6. # the build script usually will enable this if `yarn` is installed.
  7. # If enabled explicitly, the build script will panic if something went wrong.
  8. embed_ui = []
  9. [dependencies]
  10. dim-database = { path = "../dim-database" }
  11. dim-utils = { path = "../dim-utils" }
  12. dim-events = { path = "../dim-events" }
  13. dim-core = { path = "../dim-core" }
  14. nightfall = { git = "https://github.com/Dusk-Labs/nightfall", tag = "0.3.12-rc4", default-features = false, features = [
  15. "cuda",
  16. "ssa_transmux",
  17. ] }
  18. axum = { version = "0.6.20", features = ["ws", "http2", "macros", "multipart"] }
  19. axum-extra = { version = "0.9.0", features = ["cookie"] }
  20. cfg-if = "1.0.0"
  21. chrono = { version = "0.4.19", features = ["serde"] }
  22. displaydoc = "0.2.3"
  23. dominant_color = "0.3.0"
  24. futures = "0.3.14"
  25. fuzzy-matcher = "0.3.7"
  26. http = "^0.2.3"
  27. image = "0.24.3"
  28. once_cell = "1.8.0"
  29. percent-encoding = "2.1.0"
  30. rust-embed = "^5.9.0"
  31. serde = { version = "^1.0.125", default-features = false, features = [
  32. "derive",
  33. "std",
  34. "rc",
  35. ] }
  36. serde_derive = "^1.0.125"
  37. serde_json = "^1.0.64"
  38. sqlx = { version = "0.5", features = ["runtime-tokio-rustls"] }
  39. thiserror = "1.0.30"
  40. tokio = { version = "1.27.0", features = ["full"] }
  41. tracing = "0.1.32"
  42. tracing-appender = "0.2.0"
  43. tracing-subscriber = { version = "^0.3.10", features = [
  44. "fmt",
  45. "env-filter",
  46. "json",
  47. ] }
  48. uuid = { version = "1.2.2", features = ["v4"] }
  49. hyper = "0.14.25"
  50. tower = { version = "0.4.13", features = ["tokio", "util"] }
  51. dim-extern-api = { version = "0.4.0-dev", path = "../dim-extern-api" }
  52. tokio-stream = { version = "0.1.14", features = ["full"] }
  53. tower-http = { version = "0.4.4", features = ["full"] }