diff --git a/Cargo.lock b/Cargo.lock index 98cd228..2a26f9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2188,9 +2188,9 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vgi" -version = "0.11.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79157be842204e4dd874a2e356df73ee7b0ce678617b1797da20a27e717bd636" +checksum = "99ee79be812cf08e47025155bef152e979202a68fb68657410b42777ca6afdaa" dependencies = [ "arrow", "arrow-arith", @@ -2205,6 +2205,7 @@ dependencies = [ "ctrlc", "libc", "log", + "regex", "rusqlite", "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index a0155cd..43eb53b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ repository = "https://github.com/Query-farm/vgi-sourcemap" # VGI Rust SDK (worker side), published on crates.io. Pulls in vgi-rpc 0.8 and # arrow 59 transitively; keep arrow/vgi-rpc here in lockstep with vgi's pins so a # single arrow/vgi-rpc resolves. -vgi = "0.11.0" +vgi = "0.14.0" vgi-rpc = { version = "0.8.0", default-features = false, features = ["macros", "http"] } arrow-array = "59" arrow-buffer = "59"