Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8861962

Browse files
authoredMay 16, 2025
Merge pull request #70 from open-rmf/xiyu/release-0.3
Release 0.3 with migration to Bevy 0.15
2 parents 030510f + 3777701 commit 8861962

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+247
-232
lines changed
 

‎.cargo/config.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[build]
22
rustdocflags = ["-D", "warnings"]
3+
4+
[target.wasm32-unknown-unknown]
5+
rustflags = '--cfg getrandom_backend="wasm_js"'

‎.github/workflows/ci_linux.yaml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
strategy:
2020
matrix:
21-
rust-version: [stable, 1.75]
21+
rust-version: stable
2222

2323
runs-on: ubuntu-latest
2424

@@ -28,14 +28,6 @@ jobs:
2828
- name: Setup rust
2929
run: rustup default ${{ matrix.rust-version }}
3030

31-
# As new versions of our dependencies come out, they might depend on newer
32-
# versions of the Rust compiler. When that happens, we'll use this step to
33-
# lock down the dependency to a version that is known to be compatible with
34-
# compiler version 1.75.
35-
- name: Patch dependencies
36-
if: ${{ matrix.rust-version == 1.75 }}
37-
run: ./scripts/patch-versions-msrv-1_75.sh
38-
3931
- name: Build default features
4032
run: cargo build --workspace
4133
- name: Test default features

0 commit comments

Comments
 (0)
Please sign in to comment.