# Test a bunch of different configurations. test: RUSTFLAGS="-D warnings" cargo test RUSTFLAGS="-D warnings" cargo test --lib --no-default-features RUSTFLAGS="-D warnings" cargo test --lib --no-default-features --features alloc RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,face-sleepy | grep -v 😴 RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,additive,face-sleepy | grep 😴 | grep -v πŸš— RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,travel-and-places | grep 🌈 | grep -v πŸš— RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,additive,travel-and-places | grep πŸš— | grep -v πŸ‘Œ RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,v0006 | grep πŸš€ | grep -v 🏳️ RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,v1200 | grep πŸ₯± | grep -v πŸ§‘β€πŸ¦° RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,skin-tones | grep πŸ–– | grep -v πŸ––πŸ» RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,additive,person,skin-tones | grep πŸ‘ΆπŸ½ RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,genders | grep πŸ§” | grep -v πŸ§”β€β™€οΈ RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,additive,person | grep πŸ§” | grep -v πŸ§”β€β™€οΈ RUSTFLAGS="-D warnings" cargo run --example iter --no-default-features --features std,additive,person,genders | grep πŸ‘§ | grep πŸ§”β€β™€οΈ cargo clippy -- -D warnings cargo clippy --no-default-features -- -D warnings cargo clippy --no-default-features --features alloc -- -D warnings # Run all the examples. examples: cargo run --example iter cargo run --example full