feat(backend): Phase 2.5 permission and share models
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

This commit is contained in:
goose 2026-02-15 21:08:31 -03:00
parent 3eeef6d9c8
commit eb0e2cc4b5
7 changed files with 265 additions and 106 deletions

View file

@ -1,32 +1,35 @@
[package]
name = "normogen-backend"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.7", features = ["macros", "multipart"] }
tokio = { version = "1", features = ["full"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace", "limit", "decompression-gzip"] }
tower_governor = "0.4"
governor = "0.6"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
mongodb = "2.8"
jsonwebtoken = "9"
async-trait = "0.1"
dotenv = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
validator = { version = "0.16", features = ["derive"] }
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
pbkdf2 = { version = "0.12", features = ["simple"] }
sha2 = "0.10"
rand = "0.8"
anyhow = "1"
thiserror = "1"
[dev-dependencies]
tokio-test = "0.4"
reqwest = { version = "0.12", features = ["json"] }
### /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"] }
```