Skip to content

Commit

Permalink
ci: bump up Rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
georgik committed Mar 1, 2022
1 parent 4096514 commit 4657d72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idf-env"
version = "1.2.22"
version = "1.2.23"
authors = ["Juraj Michalek <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion src/idf_env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mod toit;
async fn app() -> Result<()> {
Commander::new()
.options(|app| {
app.version("1.2.22")
app.version("1.2.23")
.name("idf-env")
.author("Espressif Systems - https://www.espressif.com")
.about("Tool for maintaining ESP-IDF environment on computer.")
Expand Down
2 changes: 1 addition & 1 deletion src/rust.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::config::get_tool_path;
use crate::package::{prepare_package, prepare_package_strip_prefix, prepare_single_binary};
use crate::shell::run_command;

const DEFAULT_RUST_TOOLCHAIN_VERSION:&str = "1.58.0.0";
const DEFAULT_RUST_TOOLCHAIN_VERSION:&str = "1.59.0.0";
const DEFAULT_LLVM_VERSION:&str = "esp-13.0.0-20211203";

struct RustToolchain {
Expand Down

0 comments on commit 4657d72

Please sign in to comment.