Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,22 @@ unstable = []

[dependencies]
mint = "0.5.9"
rand = "0.8.5"
rand_pcg = "0.3.1"
rand = "0.10.2"
rand_pcg = "0.10.2"

[dependencies.glam]
version = "0.29.0"
version = "0.33.2"
features = ["mint", "rand"]
# a lot of random data generation uses glam, so can't be optional yet
# optional = true

[dependencies.nalgebra]
version = "0.33.2"
version = "0.35.0"
features = ["mint"]
optional = true

[dependencies.simba]
version = "0.9.0"
version = "0.10.0"
optional = true

[dependencies.cgmath]
Expand All @@ -74,17 +74,17 @@ version = "0.2.3"
optional = true

[dependencies.ultraviolet]
version = "0.9.0"
version = "0.10.0"
features = ["mint"]
optional = true

[dependencies.wide_mathbench]
package = "wide"
version = "0.7.5"
version = "1.5.0"
optional = true

[dev-dependencies]
criterion = "0.5.1"
criterion = "0.8.2"

# [patch.crates-io]
# glam = { path = "../glam-rs" }
Expand Down
5 changes: 4 additions & 1 deletion after-success.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ git checkout master &&
cargo bench --bench eulerbench -- --noplot --save-baseline before &&

# Bench current branch
git checkout $GITHUB_SHA &&
# For PRs, GITHUB_SHA is a merge commit that doesn't exist in a fresh clone.
# Use GITHUB_HEAD_REF (the branch name) for PRs, fall back to GITHUB_SHA for pushes.
CHECKOUT="${GITHUB_HEAD_REF:-$GITHUB_SHA}"
git checkout "$CHECKOUT" &&
cargo bench --bench eulerbench -- --noplot --save-baseline after &&

# Install https://github.com/BurntSushi/critcmp
Expand Down
Loading
Loading