Skip to content

Commit

Permalink
Bump minimal supported Rust version to 1.73 (#443)
Browse files Browse the repository at this point in the history
  • Loading branch information
vobst authored Feb 29, 2024
1 parent b737d39 commit e3aee42
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.70 AS builder
FROM rust:1.73-bullseye AS builder

WORKDIR /cwe_checker

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The prebuilt Docker images are currently only x86-based.
### Local installation ###

The following dependencies must be installed in order to build and install the *cwe_checker* locally:
- [Rust](https://www.rust-lang.org) >= 1.70
- [Rust](https://www.rust-lang.org) >= 1.73
- [Ghidra](https://ghidra-sre.org/) >= 10.2

Run `make all GHIDRA_PATH=/path/to/ghidra_folder` (with the correct path to the local Ghidra installation inserted) to compile and install the cwe_checker.
Expand Down
3 changes: 2 additions & 1 deletion src/caller/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name = "cwe_checker"
version = "0.8.0"
authors = ["Nils-Edvin Enkelmann <[email protected]>"]
edition = "2021"
rust-version = "1.73"

[dependencies]
clap = { version = "4.0.32", features = ["derive"] }
cwe_checker_lib = { path = "../cwe_checker_lib" }
serde_json = "1.0"
directories = "5.0.1"
anyhow = "1.0"
anyhow = "1.0"
1 change: 1 addition & 0 deletions src/cwe_checker_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "cwe_checker_lib"
version = "0.8.0"
authors = ["Nils-Edvin Enkelmann <[email protected]>"]
edition = "2021"
rust-version = "1.73"

[dependencies]
apint = "0.2"
Expand Down
1 change: 1 addition & 0 deletions src/installer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "cwe_checker_install"
version = "0.1.0"
edition = "2021"
rust-version = "1.73"

[dependencies]
directories = "5.0.1"
Expand Down

0 comments on commit e3aee42

Please sign in to comment.