deps: update tokenizer to 0.2.0

This commit is contained in:
Fedor Indutnyy 2023-01-31 12:18:30 -08:00
parent 26ae9e0fc7
commit d48edee39a

4
deps/download.js vendored
View File

@ -6,10 +6,10 @@ const { Transform } = require('stream');
const { pipeline } = require('stream/promises');
const BASE_URI = `https://build-artifacts.signal.org/desktop`;
const HASH = '057008836632dfa5188f84eb073a3036688bacc73cfc64ad18af7a1f4e21b1c3';
const HASH = 'c5c051b19b8f4659606f1dff6c735bc4b0e0df85c470c035073f61c5e0a18200';
const SQLCIPHER_VERSION = '4.5.2';
const OPENSSL_VERSION = '3.0.7';
const TOKENIZER_VERSION = '0.1.0';
const TOKENIZER_VERSION = '0.2.0';
const TAG = [SQLCIPHER_VERSION, OPENSSL_VERSION, TOKENIZER_VERSION].join('--');
const URL = `${BASE_URI}/sqlcipher-${TAG}-${HASH}.tar.gz`;