From fdf5e426f0aa109c5b9623ec91cf9f8ed004eb2f Mon Sep 17 00:00:00 2001 From: Cassie Jones Date: Tue, 21 Jan 2020 23:10:43 -0500 Subject: [PATCH] Change bitmatch to use the published version --- toolchain/Cargo.lock | 75 +++----------------------------------------- toolchain/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 72 deletions(-) diff --git a/toolchain/Cargo.lock b/toolchain/Cargo.lock index 3ae9849..669851d 100644 --- a/toolchain/Cargo.lock +++ b/toolchain/Cargo.lock @@ -36,6 +36,8 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "bitmatch" version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "353d9c70f8b9fc9a8d94c1d53fe07cbceda6cbcdabf17db8bb02d0c5a3d11ba7" dependencies = [ "boolean_expression", "proc-macro2 1.0.8", @@ -45,13 +47,11 @@ dependencies = [ [[package]] name = "boolean_expression" -version = "0.3.9" +version = "0.3.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8bc527fa8fb9f89e6d049fdea9ab86d738265a1bc814ec7ac6e93e1d4769f84" +checksum = "c32d4ff2e41efaa15713e03e15dc99b1bd7e1aa0f60513e2717d0669e12cc913" dependencies = [ - "indoc", "itertools", - "rand 0.3.23", "smallvec", ] @@ -108,29 +108,6 @@ dependencies = [ "wasi", ] -[[package]] -name = "indoc" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "098a82c5223d3162a32d79f84e43d718c32f050d07b796285684ee43059bc8c4" -dependencies = [ - "indoc-impl", - "proc-macro-hack", -] - -[[package]] -name = "indoc-impl" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55cf2a15c870db1b07595cc9adaece19fac97d59a16665e79cd728b391a6b711" -dependencies = [ - "proc-macro-hack", - "proc-macro2 0.4.30", - "quote 0.6.13", - "syn 0.15.44", - "unindent", -] - [[package]] name = "itertools" version = "0.4.19" @@ -164,21 +141,6 @@ version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" -[[package]] -name = "proc-macro-hack" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "463bf29e7f11344e58c9e01f171470ab15c925c6822ad75028cc1c0e1d1eb63b" -dependencies = [ - "proc-macro-hack-impl", -] - -[[package]] -name = "proc-macro-hack-impl" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38c47dcb1594802de8c02f3b899e2018c78291168a22c281be21ea0fb4796842" - [[package]] name = "proc-macro2" version = "0.4.30" @@ -252,29 +214,6 @@ dependencies = [ "proc-macro2 1.0.8", ] -[[package]] -name = "rand" -version = "0.3.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" -dependencies = [ - "libc", - "rand 0.4.6", -] - -[[package]] -name = "rand" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" -dependencies = [ - "fuchsia-cprng", - "libc", - "rand_core 0.3.1", - "rdrand", - "winapi", -] - [[package]] name = "rand" version = "0.6.5" @@ -527,12 +466,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" -[[package]] -name = "unindent" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63f18aa3b0e35fed5a0048f029558b1518095ffe2a0a31fb87c93dece93a4993" - [[package]] name = "wait-timeout" version = "0.2.0" diff --git a/toolchain/Cargo.toml b/toolchain/Cargo.toml index bb6101e..b9518bc 100644 --- a/toolchain/Cargo.toml +++ b/toolchain/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bitmatch = { path = "../../../rust/bitmatch" } +bitmatch = "0.1" [dev-dependencies] proptest = "0.9.4" -- 2.47.0