From 90fa775a484d9ec9738776cc246b3fcf0ddb752d Mon Sep 17 00:00:00 2001 From: Eli Peter <54954007+ecpeter23@users.noreply.github.com> Date: Wed, 25 Jun 2025 02:05:15 +0200 Subject: [PATCH] docs: Add third-party licenses documentation and update build process (#12) --- Cargo.lock | 1 + Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d9b9276d..f44fafef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -529,6 +529,7 @@ version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91632f3b4fb6bd1d72aa3d78f41ffecfcf2b1a6648d8c241dbe7dbfaf4875e15" dependencies = [ + "cc", "pkg-config", "vcpkg", ] diff --git a/Cargo.toml b/Cargo.toml index 24efc177..b229d2d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,8 @@ toml = "0.8.23" tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json", "ansi","time"] } tracing = "0.1.41" num_cpus = "1.17.0" -rusqlite = "0.36.0" +rusqlite = { version = "0.36.0", features = ["bundled"] } +r2d2_sqlite = { version = "0.30.0", features = ["bundled"] } ignore = "0.4.23" tree-sitter = "0.25.6" tree-sitter-rust = "0.24.0" @@ -33,7 +34,6 @@ blake3 = "1.8.2" once_cell = "1.21.3" console = "0.15.11" rayon = "1.10.0" -r2d2_sqlite = "0.30.0" r2d2 = "0.8.10" bytesize = "2.0.1" chrono = { version = "0.4.41", default-features = false, features = ["std", "clock"] }