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 755 B

1234567891011121314151617181920212223242526272829303132
  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. [features]
  9. default = ["tracing"]
  10. tracing = ["dep:dora-tracing"]
  11. [dependencies]
  12. dora-core = { workspace = true }
  13. shared-memory-server = { workspace = true }
  14. eyre = "0.6.7"
  15. serde_yaml = "0.8.23"
  16. tracing = "0.1.33"
  17. flume = "0.10.14"
  18. bincode = "1.3.3"
  19. shared_memory_extended = "0.13.0"
  20. dora-tracing = { workspace = true, optional = true }
  21. arrow = { workspace = true }
  22. futures = "0.3.28"
  23. futures-concurrency = "7.3.0"
  24. futures-timer = "3.0.2"
  25. dora-arrow-convert = { workspace = true }
  26. aligned-vec = "0.5.0"
  27. serde_json = "1.0.86"
  28. [dev-dependencies]
  29. tokio = { version = "1.24.2", features = ["rt"] }