1 2 3 4 5 6 7 8 9 10 11 12 13
all: test build build: cargo build test: cargo test --all-features cargo test --features sqlite cargo test --features postgres cargo test --features mysql cargo test --features xml clean: cargo clean bench: cargo bench --features sqlite