From 2dfa0dd5af935c88edd8486fae5fba2e2a70b0e3 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 11 May 2022 21:38:47 -0400 Subject: [PATCH] use git version of base64 --- Cargo.lock | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 79d3424..16e6efc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -146,8 +146,7 @@ dependencies = [ [[package]] name = "base64" version = "0.20.0-alpha.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "149ea5dc24cb11513350770afebba32b68e3d2e356f9221351a2a1ee89112a82" +source = "git+https://github.com/marshallpierce/rust-base64.git#a675443d327e175f735a37f574de803d6a332591" [[package]] name = "benchmarks" diff --git a/Cargo.toml b/Cargo.toml index 552abe4..182ad7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ static_assertions = "1.1" uuid = { version = "1", features = ["v4", "fast-rng", "js"] } bincode = "1.3" serde = "1" -base64 = "0.20.0-alpha.1" +base64 = { git = "https://github.com/marshallpierce/rust-base64.git" } [dev-dependencies] benchmarks = { path = "./benchmarks" }