chore: audit 2.8 et 2.9 — gitignore et Tokio
2.8: Mise à jour .gitignore - .turbo/ (cache Turborepo) - *.out (Go coverage, artefacts) - test-results/ et playwright-report/ (patterns globaux) 2.9: Alignement Tokio 1.0 → 1.35 - veza-common: dependencies + dev-dependencies - veza-stream-server/tools
This commit is contained in:
parent
bbd8ed54de
commit
67271c7b34
4 changed files with 9 additions and 5 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
|
@ -51,12 +51,16 @@ Thumbs.db
|
|||
tmp/
|
||||
temp/
|
||||
.cache/
|
||||
.turbo/
|
||||
coverage/
|
||||
coverage-final.json
|
||||
|
||||
### Test artifacts
|
||||
*.test
|
||||
*.coverage
|
||||
*.out
|
||||
test-results/
|
||||
playwright-report/
|
||||
|
||||
### Build / Bundles
|
||||
*.wasm
|
||||
|
|
|
|||
|
|
@ -669,8 +669,8 @@ veza/
|
|||
| 2.5 | ~~Supprimer `cmd/modern-server/`~~ | **S** | **✅ Fait** — bascule vers cmd/api/main.go |
|
||||
| 2.6 | ~~Supprimer `pages/` directory legacy~~ | **M** | **✅ Fait** — migré vers `features/*/pages/` |
|
||||
| 2.7 | ~~Découper `config.go` (1 461 LOC)~~ | **M** | **✅ Fait** — séparé par domaine (env_helpers, db_init, redis_init, rabbitmq, rate_limit, cors, services_init, middlewares_init) |
|
||||
| 2.8 | Gitignorer les fichiers `.out`, test results, `.turbo/` | **S** | Mettre à jour `.gitignore` |
|
||||
| 2.9 | Aligner versions Tokio dans `veza-common` | **S** | 1.0 → 1.35 |
|
||||
| 2.8 | ~~Gitignorer les fichiers `.out`, test results, `.turbo/`~~ | **S** | **✅ Fait** — .gitignore mis à jour |
|
||||
| 2.9 | ~~Aligner versions Tokio dans `veza-common`~~ | **S** | **✅ Fait** — 1.0 → 1.35 (veza-common, stream-server/tools) |
|
||||
| 2.10 | Ajouter des tests d'intégration E2E pour les flows critiques | **L** | Auth, Upload, Purchase, Chat |
|
||||
|
||||
### Phase 3 — AMÉLIORATION & PRÉPARATION SCALE (6-12 semaines)
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ regex = "1.0"
|
|||
lazy_static = "1.4"
|
||||
|
||||
# Async runtime
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
tokio = { version = "1.35", features = ["full"] }
|
||||
async-trait = "0.1"
|
||||
|
||||
# Database
|
||||
|
|
@ -65,7 +65,7 @@ lru = "0.12"
|
|||
|
||||
[dev-dependencies]
|
||||
# Testing
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
tokio = { version = "1.35", features = ["full"] }
|
||||
mockall = "0.12"
|
||||
tokio-test = "0.4"
|
||||
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ rustfft = "6.2"
|
|||
apodize = "1.0"
|
||||
|
||||
# Async utilities
|
||||
tokio = { version = "1.0", features = ["full"] }
|
||||
tokio = { version = "1.35", features = ["full"] }
|
||||
futures = "0.3"
|
||||
|
||||
# Serialization
|
||||
|
|
|
|||
Loading…
Reference in a new issue