]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
lua: use lua from crates.io rather than github
authorJason Ish <jason.ish@oisf.net>
Mon, 12 Aug 2024 22:00:23 +0000 (16:00 -0600)
committerVictor Julien <victor@inliniac.net>
Thu, 12 Sep 2024 20:17:20 +0000 (22:17 +0200)
This allows the source override in .cargo/config.toml to apply to the
suricata-lua-sys crate as well fixing offline builds.

Ticket: #7226

rust/Cargo.lock.in
rust/Cargo.toml.in

index 0c412e1d5cb6b25970754685610c080e946b8f6f..2570a4d98e00ed15d5d3e9f32b7791393d7aee93 100644 (file)
@@ -1009,8 +1009,9 @@ dependencies = [
 
 [[package]]
 name = "suricata-lua-sys"
-version = "0.1.0-alpha.2"
-source = "git+https://github.com/jasonish/suricata-lua-sys#b04cf66fa70e0e2ec66dc09aae5fd5ee96637493"
+version = "0.1.0-alpha.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "27aba92b2bc53955440218aed3fa6e6f4cf6cba443deb8fed7e216e6b1d96af2"
 dependencies = [
  "fs_extra",
 ]
index 7ec8791ea8fc131a84126a6fbe698b4c0df4efbc..c69db937708ebff740e4cfd9321386a016f10aff 100644 (file)
@@ -67,7 +67,7 @@ time = "~0.3.36"
 
 suricata-derive = { path = "./derive", version = "@PACKAGE_VERSION@" }
 
-suricata-lua-sys = { git = "https://github.com/jasonish/suricata-lua-sys", version = "0.1.0-alpha.1" }
+suricata-lua-sys = { version = "0.1.0-alpha.1" }
 
 [dev-dependencies]
 test-case = "~3.3.1"