blog/backend/feature/image/Cargo.toml
SquidSpirit ab3050db69
All checks were successful
Frontend CI / build (push) Successful in 1m4s
BLOG-78 Backend image upload and download (#84)
### Description

- Add some endpoints about image:
  - POST `/image/upload`
  - GET `/image/{id}`

> [!NOTE]
> Since there isn't identity authentication, the `/image` endpoints should be restricted to private network in nginx.

> [!NOTE]
> Volume for backend should be configured in `pod.yaml`.

### Package Changes

```toml
actix-multipart = "0.7.2"
```

### Screenshots

_No response_

### Reference

Resolves #78

### Checklist

- [x] A milestone is set
- [x] The related issuse has been linked to this branch

Reviewed-on: #84
Co-authored-by: SquidSpirit <squid@squidspirit.com>
Co-committed-by: SquidSpirit <squid@squidspirit.com>
2025-07-27 13:10:46 +08:00

15 lines
295 B
TOML

[package]
name = "image"
version.workspace = true
edition.workspace = true
[dependencies]
actix-multipart.workspace = true
actix-web.workspace = true
async-trait.workspace = true
chrono.workspace = true
futures.workspace = true
log.workspace = true
serde.workspace = true
sqlx.workspace = true