Skip to content

Commit 2b4db7b

Browse files
devcontainer fixes (#173)
1 parent 4b7526a commit 2b4db7b

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.devcontainer/Dockerfile

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
# SPDX-License-Identifier: Apache-2.0
1212
################################################################################
1313

14-
FROM mcr.microsoft.com/devcontainers/rust:1-1-bookworm
15-
14+
FROM mcr.microsoft.com/devcontainers/rust:latest
1615
ARG USERNAME=vscode
1716
ARG TARGETARCH
1817

@@ -33,7 +32,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
3332
USER ${USERNAME}
3433

3534
# Install cargo cli tools
36-
RUN cargo install cargo-tarpaulin --locked
35+
RUN cargo install cargo-nextest cargo-deny cargo-tarpaulin --locked
3736

3837
# Install cargo tools for cross compilation
3938
RUN rustup target add aarch64-unknown-linux-gnu \

.devcontainer/devcontainer.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22
// README at: https://github.com/devcontainers/templates/tree/main/src/rust
33
{
4-
"name": "uProtocol-Rust SDK",
4+
"name": "uProtocol-Rust language library",
55
"build": {
66
"dockerfile": "Dockerfile"
77
},
@@ -39,10 +39,8 @@
3939
"hediet.vscode-drawio",
4040
"linusu.auto-dark-mode",
4141
"mhutchie.git-graph",
42-
"redhat.vscode-yaml",
4342
"ryanluker.vscode-coverage-gutters",
4443
"rust-lang.rust-analyzer",
45-
"serayuzgur.crates",
4644
"streetsidesoftware.code-spell-checker",
4745
"tamasfe.even-better-toml",
4846
"timonwong.shellcheck",
@@ -52,7 +50,7 @@
5250
]
5351
}
5452
},
55-
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace/uprotocol-rust/,type=bind",
56-
"workspaceFolder": "/workspace/uprotocol-rust/",
53+
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace/up-rust/,type=bind",
54+
"workspaceFolder": "/workspace/up-rust/",
5755
"remoteUser": "vscode"
5856
}

0 commit comments

Comments
 (0)