Skip to content

Commit

Permalink
base rust
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Aug 12, 2024
1 parent 49456b4 commit be23da6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions check/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,3 @@ pub const PROJECT_HASH_SECTION_NAME: &str = "project_hash";

/// Name of the toolchain file used to specify the Rust toolchain version for a project.
pub const TOOLCHAIN_FILE_NAME: &str = "rust-toolchain.toml";

/// Base Rust image version to be used for reproducible builds. This simply installs cargo and the Rust
/// compiler, but the user will specify the exact version of the Rust toolchain to use for building within
/// the docker container.
pub const RUST_BASE_IMAGE_VERSION: &str = "1.79.0";
2 changes: 1 addition & 1 deletion check/src/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::process::{Command, Stdio};
use cargo_stylus_util::color::Color;
use eyre::{bail, eyre, Result};

use crate::constants::{RUST_BASE_IMAGE_VERSION, TOOLCHAIN_FILE_NAME};
use crate::constants::TOOLCHAIN_FILE_NAME;
use crate::macros::greyln;
use crate::project::extract_toolchain_channel;

Expand Down

0 comments on commit be23da6

Please sign in to comment.