Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <arun@asymptotic.io>2021-11-10 00:14:20 +0300
committerArun Raghavan <arun@asymptotic.io>2021-11-10 00:14:20 +0300
commit44b4a4eb7e8c9eafbeb769bdaf5ea4d74ce37fed (patch)
treeeeae0ef7059a8b6b21424ff297fdc08ad809fca9 /meson.build
parent82be7b3ac5911dd8b8cb13b3394f3159e57d6e3f (diff)
meson: Specify minimum cargo-c version
We need newer versions that support '-p' to select the package to build.
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index e004a054b..d93ee19a7 100644
--- a/meson.build
+++ b/meson.build
@@ -12,7 +12,7 @@ endif
cargo = find_program('cargo', version:'>=1.40')
cargo_wrapper = find_program('cargo_wrapper.py')
-cargo_c = find_program('cargo-cbuild', required: false)
+cargo_c = find_program('cargo-cbuild', version:'>=0.9.3', required: false)
rustc = find_program('rustc', version:'>=1.52')
if not cargo_c.found()