diff --git a/Cargo.toml b/Cargo.toml index 2ecab167..f3f83cf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ # "crates/results/rite-solutions", "crates/results/msa", "pypi/distances", - # "pypi/results/cakes", + "pypi/results/cakes", ] resolver = "2" diff --git a/Earthfile b/Earthfile index 62913e21..5233567a 100644 --- a/Earthfile +++ b/Earthfile @@ -56,7 +56,7 @@ build: # This target formats the project. fmt: FROM +chef-cook - RUN cargo fmt --all -- --check && rye fmt --all --check + RUN cargo fmt --all --all-features -- --check && rye fmt --all --check # This target lints the project. lint: @@ -67,7 +67,7 @@ lint: # Apply any automated fixes. fix: FROM +chef-cook - RUN cargo fmt --all + RUN cargo fmt --all --all-features RUN rye fmt --all RUN cargo clippy --fix --allow-no-vcs RUN rye lint --fix