--- a/Cargo.lock +++ b/Cargo.lock @@ -65,7 +65,8 @@ [[package]] name = "clap" version = "3.0.0-beta.2" -source = "git+https://github.com/clap-rs/clap?rev=92f744cc49d12d32261010d355dc215a6d2487b9#92f744cc49d12d32261010d355dc215a6d2487b9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bd1061998a501ee7d4b6d449020df3266ca3124b941ec56cf2005c3779ca142" dependencies = [ "atty", "bitflags", @@ -76,13 +77,15 @@ "strsim", "termcolor", "textwrap", + "unicode-width", "vec_map", ] [[package]] name = "clap_derive" version = "3.0.0-beta.2" -source = "git+https://github.com/clap-rs/clap?rev=92f744cc49d12d32261010d355dc215a6d2487b9#92f744cc49d12d32261010d355dc215a6d2487b9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "370f715b81112975b1b69db93e0b56ea4cd4e5002ac43b2da8474106a54096a1" dependencies = [ "heck", "proc-macro-error", @@ -94,7 +97,8 @@ [[package]] name = "clap_generate" version = "3.0.0-beta.2" -source = "git+https://github.com/clap-rs/clap?rev=92f744cc49d12d32261010d355dc215a6d2487b9#92f744cc49d12d32261010d355dc215a6d2487b9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adf420f8b687b628d2915ccfd43a660c437a170432e3fbcb66944e8717a0d68f" dependencies = [ "clap", ] @@ -266,9 +270,9 @@ [[package]] name = "os_str_bytes" -version = "3.0.0" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e293568965aea261bdf010db17df7030e3c9a275c415d51d6112f7cf9b7af012" +checksum = "afb2e1c3ee07430c2cf76151675e583e0f19985fa6efae47d6848a3e2c824f85" [[package]] name = "pathdiff" @@ -416,9 +420,9 @@ [[package]] name = "textwrap" -version = "0.13.4" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd05616119e612a8041ef58f2b578906cc2531a6069047ae092cfb86a325d835" +checksum = "203008d98caf094106cfaba70acfed15e18ed3ddb7d94e49baec153a2b462789" dependencies = [ "unicode-width", ] --- a/cmds/jrsonnet/Cargo.toml +++ b/cmds/jrsonnet/Cargo.toml @@ -19,11 +19,5 @@ # TODO: Fix mimalloc compile errors, and use them mimallocator = { version = "0.1.3", optional = true } thiserror = "1.0" - -[dependencies.clap] -git = "https://github.com/clap-rs/clap" -rev = "92f744cc49d12d32261010d355dc215a6d2487b9" - -[dependencies.clap_generate] -git = "https://github.com/clap-rs/clap" -rev = "92f744cc49d12d32261010d355dc215a6d2487b9" +clap = "3.0.0-beta.2" +clap_generate = "3.0.0-beta.2" --- a/crates/jrsonnet-cli/Cargo.toml +++ b/crates/jrsonnet-cli/Cargo.toml @@ -10,7 +10,4 @@ [dependencies] jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6", features = ["explaining-traces"] } jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" } - -[dependencies.clap] -git = "https://github.com/clap-rs/clap" -rev = "92f744cc49d12d32261010d355dc215a6d2487b9" +clap = "3.0.0-beta.2"