Skip to content

Commit c8f2ba7

Browse files
committed
feat: fix devcontainer for rust analyzer
1 parent 2c88474 commit c8f2ba7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM mcr.microsoft.com/devcontainers/base:1-bookworm
2+
23
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
3-
&& apt-get -y install git build-essential protobuf-compiler \
4+
&& apt-get -y install git build-essential protobuf-compiler pkg-config libssl-dev \
45
# Remove imagemagick due to https://security-tracker.debian.org/tracker/CVE-2019-10131
56
&& apt-get purge -y imagemagick imagemagick-6-common

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"installDockerBuildx": "true"
1616
},
1717
"ghcr.io/devcontainers/features/rust:1": {
18-
"version": "1.70",
18+
"version": "1.77",
1919
"profile": "complete"
2020
},
2121
"ghcr.io/devcontainers/features/git:1": {

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## Changed
99
- Lading now built with edition 2024
1010
- Removed use of compromised `tj-actions/changed-files` action from project's GitHub CI configuration
11+
- Fixed devcontainer configuration to ensure the `rust-analyzer` can run successfully within IDEs
1112

1213
## [0.25.6]
1314
## Fixed

0 commit comments

Comments
 (0)