Skip to content

Commit b2327b0

Browse files
committed
Downgrade to rust version '2021'.
Signed-off-by: Rahul Krishna <[email protected]>
1 parent 06d3af3 commit b2327b0

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

.devcontainer/devcontainer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
55
"remoteUser": "vscode",
66
"workspaceFolder": "/codeanalyzer-rs",
77
"workspaceMount": "source=${localWorkspaceFolder},target=/codeanalyzer-rs,type=bind,consistency=delegated",
8-
"runArgs": ["-h", "codenet"],
8+
"runArgs": [
9+
"-h",
10+
"codenet"
11+
],
912
"customizations": {
1013
"vscode": {
1114
"settings": {
1215
"markdown-preview-github-styles.colorTheme": "light",
1316
"cSpell.words": [
14-
"northstar",
17+
"cldk",
1518
"cyclomatic",
1619
"stdlibs"
1720
],

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "codeanalyzer-rs"
33
version = "0.1.0"
4-
edition = "2024"
4+
edition = "2021"
55
authors = ["Rithul Kamesh <[email protected]>"]
66
description = "A code analysis tool written in Rust"
77
license = "Apache-2.0"
@@ -11,5 +11,5 @@ keywords = ["code-analysis", "static-analysis", "rust"]
1111
categories = ["development-tools", "development-tools::testing"]
1212

1313
[dependencies]
14-
clap = { version = "4.5.28", features = ["derive"] }
14+
clap = { version = "4.5.29", features = ["derive"] }
1515
serde = { version = "1.0.217", features = ["derive"] }

0 commit comments

Comments
 (0)