docs: Add third-party licenses documentation and update build process (#12)

This commit is contained in:
Eli Peter 2025-06-25 02:05:15 +02:00 committed by GitHub
parent 9c76fd1e9f
commit 90fa775a48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

1
Cargo.lock generated
View file

@ -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",
]

View file

@ -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"] }