Skip to content

Commit

Permalink
feat: avoid pulling unnecessary dependencies for `enhanced-determinis…
Browse files Browse the repository at this point in the history
…m` (jcornaz#236)

BREAKING CHANGE: require rust 1.60
  • Loading branch information
Aceeri authored Apr 17, 2022
1 parent b75ffe2 commit cca0033
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:

env:
RUST_VERSION: 1.57.0
RUST_VERSION: 1.60.0
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["core", "rapier", "macros", "debug"]
[package]
name = "heron"
version = "2.4.1"
rust-version = "1.57"
rust-version = "1.60"
edition = "2021"
authors = ["Jonathan Cornaz"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ enum Layer {

## MSRV

The minimum supported rust version is currently: `1.57`
The minimum supported rust version is currently: `1.60`

**It *may* be increased to a newer stable version in a minor release.** (but only if needed)

Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "heron_core"
version = "2.4.1"
rust-version = "1.57"
rust-version = "1.60"
edition = "2021"
authors = ["Jonathan Cornaz"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion debug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "heron_debug"
version = "2.4.1"
rust-version = "1.57"
rust-version = "1.60"
edition = "2021"
authors = ["Jonathan Cornaz"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "heron_macros"
version = "2.4.1"
rust-version = "1.57"
rust-version = "1.60"
edition = "2021"
authors = ["Jonathan Cornaz"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions rapier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "heron_rapier"
version = "2.4.1"
rust-version = "1.57"
rust-version = "1.60"
edition = "2021"
authors = ["Jonathan Cornaz"]
license = "MIT"
Expand All @@ -15,7 +15,7 @@ all-features = true
default = []
2d = ["rapier2d"]
3d = ["rapier3d", "heron_core/3d"]
enhanced-determinism = ["rapier2d/enhanced-determinism", "rapier3d/enhanced-determinism"]
enhanced-determinism = ["rapier2d?/enhanced-determinism", "rapier3d?/enhanced-determinism"]

[dependencies]
heron_core = { version = "2.4.1", path = "../core" }
Expand Down

0 comments on commit cca0033

Please sign in to comment.