From 50767d7552b29f713dfcf1ca15369868fef16fef 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..def002284 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="1275894"] + extern crate byteorder; #[macro_use]