fix Dockerfile
This commit is contained in:
@@ -29,7 +29,13 @@ regex = "1.11.1"
|
||||
rustix = { version = "1.0.8", features = ["fs"] }
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = "1.0.140"
|
||||
sqlx = { version = "0.8.6", features = ["chrono", "postgres", "runtime-tokio", "time", "uuid"] }
|
||||
sqlx = { version = "0.8.6", features = [
|
||||
"chrono",
|
||||
"postgres",
|
||||
"runtime-tokio",
|
||||
"time",
|
||||
"uuid",
|
||||
] }
|
||||
thiserror = "2.0.12"
|
||||
tokio = { version = "1.46.1", features = ["full"] }
|
||||
tokio-util = "0.7.15"
|
||||
|
||||
@@ -16,11 +16,11 @@ impl<'s> SaveRequest<'s> {
|
||||
&self.path
|
||||
}
|
||||
|
||||
pub fn stream(&self) -> &'s UploadFileStream {
|
||||
pub fn stream(&self) -> &UploadFileStream<'s> {
|
||||
&self.stream
|
||||
}
|
||||
|
||||
pub fn stream_mut(&mut self) -> &'s mut UploadFileStream {
|
||||
pub fn stream_mut(&mut self) -> &mut UploadFileStream<'s> {
|
||||
&mut self.stream
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user