LlamaEdge / rag-api-server

A RAG API server written in Rust following OpenAI specs
https://llamaedge.com/docs/user-guide/server-side-rag/quick-start
Apache License 2.0
31 stars 8 forks source link

Cargo Reporting future incompatibilities #7

Closed sandptel closed 6 months ago

sandptel commented 6 months ago

While building rag-api-server it gives warning: the following packages contain code that will be rejected by a future version of Rust: buf_redux v0.8.4, traitobject v0.1.0. As per cargo.lock generated , the error is caused because of the dependency multipart-2021 = "0.19.0" which uses buf_redux which is basically not maintained now. And similar with traitobject which is used by hyper.

sandptel commented 6 months ago

fiexed https://github.com/bradfier/multipart-2021/pull/1#issue-2301412204 Also the error with trait object has already been fixed and hyper does not use traitobject as a dependency in the newer versions.