Skip to content

Commit

Permalink
Fix nightly build (#4809)
Browse files Browse the repository at this point in the history
  • Loading branch information
lxfind authored Sep 27, 2022
1 parent a6b4f08 commit a67537b
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 22 deletions.
18 changes: 0 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/sui-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ telemetry-subscribers.workspace = true
clap = { version = "3.1.17", features = ["derive"] }
prometheus = "0.13.2"
multiaddr = "0.14.0"
crossterm = "0.23.2"
rand = "0.8.5"
base64 = "0.13.0"
rand_distr = "0.4.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::{env, process::Command};
fn main() {
if env::var("GIT_REVISION").is_err() {
let output = Command::new("git")
.args(&["describe", "--always", "--dirty"])
.args(["describe", "--always", "--dirty"])
.output()
.unwrap();
if !output.status.success() {
Expand Down
2 changes: 0 additions & 2 deletions crates/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ crossbeam-queue = { version = "0.3", features = ["alloc", "std"] }
crossbeam-utils = { version = "0.8", features = ["lazy_static", "std"] }
crossterm-647d43efb71741da = { package = "crossterm", version = "0.21" }
crossterm-3c51e837cfc5589a = { package = "crossterm", version = "0.22" }
crossterm-2b5c6dc72f624058 = { package = "crossterm", version = "0.23" }
crossterm-2ffb4c3fe830441c = { package = "crossterm", version = "0.25", features = ["bracketed-paste"] }
crypto-bigint = { version = "0.4", default-features = false, features = ["generic-array", "rand_core", "zeroize"] }
crypto-common = { version = "0.1", default-features = false, features = ["std"] }
Expand Down Expand Up @@ -733,7 +732,6 @@ crossbeam-queue = { version = "0.3", features = ["alloc", "std"] }
crossbeam-utils = { version = "0.8", features = ["lazy_static", "std"] }
crossterm-647d43efb71741da = { package = "crossterm", version = "0.21" }
crossterm-3c51e837cfc5589a = { package = "crossterm", version = "0.22" }
crossterm-2b5c6dc72f624058 = { package = "crossterm", version = "0.23" }
crossterm-2ffb4c3fe830441c = { package = "crossterm", version = "0.25", features = ["bracketed-paste"] }
crypto-bigint = { version = "0.4", default-features = false, features = ["generic-array", "rand_core", "zeroize"] }
crypto-common = { version = "0.1", default-features = false, features = ["std"] }
Expand Down

0 comments on commit a67537b

Please sign in to comment.