normogen/backend/Cargo.toml
goose eb0e2cc4b5
Some checks failed
Lint and Build / Lint (push) Has been cancelled
Lint and Build / Build (push) Has been cancelled
Lint and Build / Docker Build (push) Has been cancelled
feat(backend): Phase 2.5 permission and share models
2026-02-15 21:08:31 -03:00

35 lines
1.1 KiB
TOML

### /home/asoliver/desarrollo/normogen/./backend/Cargo.toml
```toml
1: [package]
2: name = "normogen-backend"
3: version = "0.1.0"
4: edition = "2021"
5:
6: [dependencies]
7: axum = { version = "0.7", features = ["macros", "multipart"] }
8: tokio = { version = "1", features = ["full"] }
9: tower = "0.4"
10: tower-http = { version = "0.5", features = ["cors", "trace", "limit", "decompression-gzip"] }
11: tower_governor = "0.4"
12: governor = "0.6"
13: serde = { version = "1", features = ["derive"] }
14: serde_json = "1"
15: mongodb = "2.8"
16: jsonwebtoken = "9"
17: async-trait = "0.1"
18: dotenv = "0.15"
19: tracing = "0.1"
20: tracing-subscriber = { version = "0.3", features = ["env-filter"] }
21: validator = { version = "0.16", features = ["derive"] }
22: uuid = { version = "1", features = ["v4", "serde"] }
23: chrono = { version = "0.4", features = ["serde"] }
24: pbkdf2 = { version = "0.12", features = ["simple"] }
25: sha2 = "0.10"
26: rand = "0.8"
27: anyhow = "1"
28: thiserror = "1"
29:
30: [dev-dependencies]
31: tokio-test = "0.4"
32: reqwest = { version = "0.12", features = ["json"] }
```