From c63573ff3721400a3498795df3151b65f8da976e Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Fri, 8 Jul 2022 02:19:43 +0200 Subject: [PATCH] Switch to clap-sys 0.3.0 from crates.io --- Cargo.lock | 5 +++-- Cargo.toml | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a2c720c3..21787345 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -502,8 +502,9 @@ dependencies = [ [[package]] name = "clap-sys" -version = "0.2.0" -source = "git+https://github.com/glowcoil/clap-sys.git?rev=efc0940651c3a57a3f9402bf3798cda9a7f7fc87#efc0940651c3a57a3f9402bf3798cda9a7f7fc87" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27f4e06657d33d5d194db1155cef359c359483a4170362bf4e105146dd0109e3" [[package]] name = "clap_derive" diff --git a/Cargo.toml b/Cargo.toml index db649f4b..ec86e1d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,8 +68,7 @@ atomic_refcell = "0.1" backtrace = "0.3.65" bitflags = "1.3" cfg-if = "1.0" -# TODO: Switch back to the crates.rs version once the debug prints are in a released version -clap-sys = { git = "https://github.com/glowcoil/clap-sys.git", rev = "efc0940651c3a57a3f9402bf3798cda9a7f7fc87" } +clap-sys = "0.3" crossbeam = "0.8" lazy_static = "1.4" log = { version = "0.4", features = ["std", "release_max_level_info"] }