From a75dec62f4c81766c8009390da229a75a38a87f1 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Sat, 28 Sep 2024 12:49:27 +0000 Subject: [PATCH] Allow to use different versions of the libsqlite3-sys crate (#209) I've opted to allow several different versions there instead of just bumping the supported version as that makes it much easier to use proj-sys in a complex project where other crates depend on libpsqlite3-sys as well. Cargo then will figure out the right version for all dependencies as long as there is a overlapping version. --- proj-sys/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proj-sys/Cargo.toml b/proj-sys/Cargo.toml index 622df468..01325456 100644 --- a/proj-sys/Cargo.toml +++ b/proj-sys/Cargo.toml @@ -12,7 +12,7 @@ links = "proj" rust-version = "1.70" [dependencies] -libsqlite3-sys = "0.28" +libsqlite3-sys = ">=0.28,<0.31" link-cplusplus = "1.0" [build-dependencies]