From: Jason Ish Date: Thu, 12 Mar 2020 21:33:32 +0000 (-0600) Subject: rust: bring back libc as a dependency X-Git-Tag: suricata-6.0.0-beta1~387 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c1f4edc4340271ccdbd412f2d61901b7d26f939b;p=thirdparty%2Fsuricata.git rust: bring back libc as a dependency Its already pulled in by some of other dependencies so adds zero extra weight, and provides handy definitions for basic functions like free(). --- diff --git a/rust/Cargo.toml.in b/rust/Cargo.toml.in index a41d2c3fe2..b49f11e556 100644 --- a/rust/Cargo.toml.in +++ b/rust/Cargo.toml.in @@ -37,3 +37,4 @@ ipsec-parser = "0.5" snmp-parser = "0.5" tls-parser = "0.9" x509-parser = "0.6.5" +libc = "0.2.67"