Cargo.toml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [package]
  2. name = "dim-web"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [dependencies]
  6. dim-database = { path = "../dim-database" }
  7. dim-utils = { path = "../dim-utils" }
  8. dim-events = { path = "../dim-events" }
  9. dim-core = { path = "../dim-core" }
  10. nightfall = { git = "https://github.com/Dusk-Labs/nightfall", tag = "0.3.12-rc4", default-features = false, features = [
  11. "cuda",
  12. "ssa_transmux",
  13. ] }
  14. axum = { version = "0.6.12", features = ["ws", "http2", "macros"] }
  15. chrono = { version = "0.4.19", features = ["serde"] }
  16. displaydoc = "0.2.3"
  17. futures = "0.3.14"
  18. fuzzy-matcher = "0.3.7"
  19. http = "^0.2.3"
  20. once_cell = "1.8.0"
  21. percent-encoding = "2.1.0"
  22. rust-embed = "^5.9.0"
  23. serde = { version = "^1.0.125", default-features = false, features = [
  24. "derive",
  25. "std",
  26. "rc",
  27. ] }
  28. serde_derive = "^1.0.125"
  29. serde_json = "^1.0.64"
  30. sqlx = { version = "0.5", features = ["runtime-tokio-rustls"] }
  31. thiserror = "1.0.30"
  32. tokio = { version = "1.27.0", features = ["full"] }
  33. tracing = "0.1.32"
  34. tracing-appender = "0.2.0"
  35. tracing-subscriber = { version = "^0.3.10", features = [
  36. "fmt",
  37. "env-filter",
  38. "json",
  39. ] }
  40. uuid = { version = "1.2.2", features = ["v4"] }
  41. warp = { version = "0.3.3", features = ["tls", "tokio-rustls"] }
  42. hyper = "0.14.25"
  43. tower = { version = "0.4.13", features = ["tokio", "util"] }
  44. dim-extern-api = { version = "0.4.0-dev", path = "../dim-extern-api" }
  45. tokio-stream = { version = "0.1.14", features = ["full"] }
  46. tower-http = { version = "0.4.4", features = ["full"] }