Update num-rug-adapter to fix build with num feature.

This commit is contained in:
Marco A L Barbosa
2020-10-18 19:20:05 -03:00
parent 5fbdb1af9f
commit 8d405849be
4 changed files with 6 additions and 30 deletions

View File

@@ -21,7 +21,10 @@ extern crate prolog_parser;
extern crate ref_thread_local;
extern crate ring;
extern crate ripemd160;
#[cfg(feature = "rug")]
extern crate rug;
#[cfg(feature = "num-rug-adapter")]
extern crate num_rug_adapter as rug;
extern crate rustyline;
extern crate sha3;
extern crate unicode_reader;

View File

@@ -1,27 +0,0 @@
extern crate dirs;
extern crate ordered_float;
extern crate prolog_parser;
#[cfg(feature = "rug")]
extern crate rug;
#[cfg(feature = "num-rug-adapter")]
extern crate num_rug_adapter as rug;
#[macro_use]
mod macros;
mod clause_types;
pub mod instructions;
#[macro_use]
mod allocator;
mod arithmetic;
mod codegen;
mod debray_allocator;
mod fixtures;
mod forms;
mod heap_iter;
pub mod heap_print;
mod indexing;
mod iterators;
pub mod machine;
pub mod read;
mod targets;
pub mod write;