From c591d0e591f715460b39f18e0c5cbb3bc26b9f3b Mon Sep 17 00:00:00 2001 From: Rob Young Date: Thu, 16 Apr 2020 15:05:12 +0100 Subject: [PATCH] Switch fst dependency to git (#808) Closes #803 This allows the package to be built without first cloning the tantivy-search/fst repo into the expected place. This should fix CI. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d7864be30..9f2e78d06 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ byteorder = "1.0" crc32fast = "1.2.0" once_cell = "1.0" regex ={version = "1.3.0", default-features = false, features = ["std"]} -tantivy-fst = {path="../tantivy-fst", version="0.3"} +tantivy-fst = {git = "https://github.com/tantivy-search/fst", version="0.3"} memmap = {version = "0.7", optional=true} lz4 = {version="1.20", optional=true} snap = "1"