@@ -15,7 +15,7 @@ cargo watch -x 'run --bin inferadb-management' # Dev with auto-reload
1515
1616# Testing
1717cargo test # All tests
18- cargo test --package infera -management-core # Specific crate
18+ cargo test --package inferadb -management-core # Specific crate
1919cargo test test_create_vault # Single test
2020cargo test -- --nocapture # With output
2121
@@ -29,14 +29,14 @@ make check # All checks
2929
3030### Workspace Structure
3131
32- | Crate | Purpose |
33- | --------------------------------- | -------------------------------------- |
34- | ` infera -management` | Main binary entry point |
35- | ` infera -management-api` | REST/gRPC handlers, middleware, routes |
36- | ` infera -management-core` | Business logic, entities, repositories |
37- | ` infera -management-storage` | Storage backends (Memory, FDB planned) |
38- | ` infera -management-grpc` | Server API gRPC client |
39- | ` infera -management-test-fixtures` | Test utilities |
32+ | Crate | Purpose |
33+ | ----------------------------------- | -------------------------------------- |
34+ | ` inferadb -management` | Main binary entry point |
35+ | ` inferadb -management-api` | REST/gRPC handlers, middleware, routes |
36+ | ` inferadb -management-core` | Business logic, entities, repositories |
37+ | ` inferadb -management-storage` | Storage backends (Memory, FDB planned) |
38+ | ` inferadb -management-grpc` | Server API gRPC client |
39+ | ` inferadb -management-test-fixtures` | Test utilities |
4040
4141### Layered Architecture
4242
@@ -189,9 +189,9 @@ let cookie = extract_session_cookie(response.headers());
189189
190190### Test Organization
191191
192- - Integration tests: ` crates/infera -management-api/tests/ `
192+ - Integration tests: ` crates/inferadb -management-api/tests/ `
193193- Unit tests: ` #[cfg(test)] ` modules in source files
194- - Fixtures: ` crates/infera -management-test-fixtures/ `
194+ - Fixtures: ` crates/inferadb -management-test-fixtures/ `
195195
196196## Multi-Instance (FDB Required)
197197
0 commit comments