Rename libraries
libctonfile -> libreader. This library will only provide .cton file reading/parsing services which are not needed after deployment. Code for writing .cton files lives in the main cretonne library because it is fairly small, and because it is useful for extracting test cases from a deployed library.
This commit is contained in:
16
src/libreader/lib.rs
Normal file
16
src/libreader/lib.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
// ====------------------------------------------------------------------------------------==== //
|
||||
//
|
||||
// Cretonne file reader library.
|
||||
//
|
||||
// ====------------------------------------------------------------------------------------==== //
|
||||
//
|
||||
// The cton_reader library supports reading and writing .cton files. This functionality is needed
|
||||
// for testing Cretonne, but is not essential for a JIT compiler.
|
||||
//
|
||||
// ====------------------------------------------------------------------------------------==== //
|
||||
|
||||
extern crate cretonne;
|
||||
|
||||
pub mod lexer;
|
||||
pub mod parser;
|
||||
Reference in New Issue
Block a user