You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.toml 819 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "dora-node-api"
  3. version.workspace = true
  4. edition = "2021"
  5. documentation.workspace = true
  6. description.workspace = true
  7. license.workspace = true
  8. repository.workspace = true
  9. [features]
  10. default = ["tracing"]
  11. tracing = ["dep:dora-tracing"]
  12. [dependencies]
  13. dora-core = { workspace = true }
  14. dora-message = { workspace = true }
  15. shared-memory-server = { workspace = true }
  16. eyre = "0.6.7"
  17. serde_yaml = "0.8.23"
  18. tracing = "0.1.33"
  19. flume = "0.10.14"
  20. bincode = "1.3.3"
  21. shared_memory_extended = "0.13.0"
  22. dora-tracing = { workspace = true, optional = true }
  23. arrow = { workspace = true }
  24. futures = "0.3.28"
  25. futures-concurrency = "7.3.0"
  26. futures-timer = "3.0.2"
  27. dora-arrow-convert = { workspace = true }
  28. aligned-vec = "0.5.0"
  29. serde_json = "1.0.86"
  30. [dev-dependencies]
  31. tokio = { version = "1.24.2", features = ["rt"] }