Lucien Cartier-Tilet
bca0619f30
Currently, all methods declared in the Georm trait are available. If a struct has an ID pointing towards another entity, the user can create a get method to get the entity pointed at from the database too (local one-to-one relationship). I still need to implement remote one-to-one relationships (one-to-one relationships when the ID of the remote object is not available locally). I still need to also test and debug one-to-many relationships (ID of the remote entiies not available locally) and many-to-many relationships (declared in a dedicated table). For now, IDs in all cases are simple types recognized by SQLx that are not arrays. Options are only supported when explicitely specified for one-to-one relationships.
34 lines
365 B
Makefile
34 lines
365 B
Makefile
mod docker
|
|
|
|
default: lint
|
|
|
|
clean:
|
|
cargo clean
|
|
|
|
test:
|
|
cargo test --all-targets --all
|
|
|
|
lint:
|
|
cargo clippy --all-targets
|
|
|
|
audit:
|
|
cargo deny check all
|
|
|
|
build:
|
|
cargo build
|
|
|
|
build-release:
|
|
cargo build --release
|
|
|
|
format:
|
|
cargo fmt --all
|
|
|
|
format-check:
|
|
cargo fmt --check --all
|
|
|
|
check-all: format-check lint audit test
|
|
|
|
## Local Variables:
|
|
## mode: makefile
|
|
## End:
|