Skip to content

Commit 54eb67b

Browse files
authored
chore(pixi): rename project --> workspace + remove template comments (#168)
1 parent d396a93 commit 54eb67b

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

pixi.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[project]
1+
[workspace]
22
name = "phylo2vec"
33
version = "1.6.0"
44
description = "Phylo2Vec"
@@ -7,15 +7,12 @@ channels = ["conda-forge"]
77
platforms = ["linux-64", "osx-64", "osx-arm64"]
88

99
[tasks]
10-
# We can build a project using cargo build
1110
build = "cargo build"
12-
# We can build and run a project in one step using cargo run
1311
start = "cargo run"
1412
test = "cargo test"
1513
clean = "cargo clean"
1614
fmt = "cargo fmt"
1715
lint = { cmd = "cargo clippy", depends-on = ["fmt"] }
18-
# We can build a project without producing a binary to check for errors using cargo check
1916
check = "cargo check"
2017
# Create an executable in target/release instead of target/debug,
2118
# it will compile with optimizations
@@ -29,7 +26,9 @@ start-release = "cargo run --release"
2926
open-doc = "cargo doc --open"
3027
benchmark = "cargo bench && open target/criterion/report/index.html"
3128
install-samply = "cargo install samply"
32-
profile = { cmd = "cargo build --profile profiling && samply record target/profiling/profile_main", depends-on = ["install-samply"] }
29+
profile = { cmd = "cargo build --profile profiling && samply record target/profiling/profile_main", depends-on = [
30+
"install-samply",
31+
] }
3332

3433
# ======= CI Environments ==========
3534
[environments]

0 commit comments

Comments
 (0)