From 47fba83d9d39e78aad743fbb8a1eed911586ebf2 Mon Sep 17 00:00:00 2001 From: Fabian Freyer Date: Sun, 26 May 2019 18:32:09 +0200 Subject: [PATCH] bugfix: increase the type length limit Fixes a build failure on rust >= 1.35.0. See also https://github.com/rust-lang/rust/issues/58952 Fixes #59 --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 89cb7c8bf..3bbc89474 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,6 +3,8 @@ //! it aims to provide the features exposed by the FreeBSD Jail Library //! [jail(3)](https://www.freebsd.org/cgi/man.cgi?query=jail&sektion=3&manpath=FreeBSD+11.1-stable) +#![type_length_limit="17825821"] + extern crate byteorder; #[macro_use]