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

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "dora-openai-proxy-server"
  3. version.workspace = true
  4. edition.workspace = true
  5. rust-version.workspace = true
  6. documentation.workspace = true
  7. description.workspace = true
  8. license.workspace = true
  9. repository.workspace = true
  10. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  11. [dependencies]
  12. tokio = { version = "1.36.0", features = ["full"] }
  13. dora-node-api = { workspace = true, features = ["tracing"] }
  14. eyre = "0.6.8"
  15. chrono = "0.4.31"
  16. tracing = "0.1.27"
  17. serde = { version = "1.0.130", features = ["derive"] }
  18. serde_json = "1.0.68"
  19. url = "2.2.2"
  20. indexmap = { version = "2.6.0", features = ["serde"] }
  21. hyper = { version = "0.14", features = ["full"] }
  22. thiserror = "1.0.37"
  23. uuid = { version = "1.10", features = ["v4"] }
  24. mime_guess = "2.0.4"
  25. futures = "0.3.31"
  26. tokio-stream = "0.1.11"