From 22944a16125f1f7e761dc9c9849dfd6339467573 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Thu, 20 Oct 2022 15:34:22 +0200 Subject: [PATCH] Various small fixes --- deny.toml | 4 ++-- lib/compiler-llvm/src/config.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deny.toml b/deny.toml index 5f87fed14c2..0358e6a9259 100644 --- a/deny.toml +++ b/deny.toml @@ -205,9 +205,9 @@ allow-registry = ["https://github.com/rust-lang/crates.io-index"] # List of URLs for allowed Git repositories allow-git = [] -#[sources.allow-org] +[sources.allow-org] # 1 or more github.com organizations to allow git sources for -#github = [""] +github = ["TheDan64"] # 1 or more gitlab.com organizations to allow git sources for #gitlab = [""] # 1 or more bitbucket.org organizations to allow git sources for diff --git a/lib/compiler-llvm/src/config.rs b/lib/compiler-llvm/src/config.rs index d0d5c231eee..ee12cc0133b 100644 --- a/lib/compiler-llvm/src/config.rs +++ b/lib/compiler-llvm/src/config.rs @@ -130,7 +130,7 @@ impl LLVM { target_lexicon::BinaryFormat::Elf }; let triple = Triple { - architecture: architecture, + architecture, vendor: target.triple().vendor.clone(), operating_system, environment: target.triple().environment,