Browse Source
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.pull/1019/head
Jakob Stoklund Olesen
9 years ago
9 changed files with 11 additions and 11 deletions
@ -1,11 +1,11 @@ |
|||
[package] |
|||
authors = ["The Cretonne Project Developers"] |
|||
name = "ctonfile" |
|||
name = "cretonne-reader" |
|||
version = "0.0.0" |
|||
publish = false |
|||
|
|||
[lib] |
|||
name = "ctonfile" |
|||
name = "cton_reader" |
|||
path = "lib.rs" |
|||
|
|||
[dependencies] |
@ -1,11 +1,11 @@ |
|||
|
|||
// ====------------------------------------------------------------------------------------==== //
|
|||
//
|
|||
// Cretonne file read/write library.
|
|||
// Cretonne file reader library.
|
|||
//
|
|||
// ====------------------------------------------------------------------------------------==== //
|
|||
//
|
|||
// The libctonfile library supports reading and writing .cton files. This functionality is needed
|
|||
// 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.
|
|||
//
|
|||
// ====------------------------------------------------------------------------------------==== //
|
@ -1,4 +1,4 @@ |
|||
#!/bin/bash |
|||
cd $(dirname "$0")/tools |
|||
cargo test -p cretonne -p ctonfile -p cretonne-tools |
|||
cargo doc -p cretonne -p ctonfile -p cretonne-tools |
|||
cargo test -p cretonne -p cretonne-reader -p cretonne-tools |
|||
cargo doc -p cretonne -p cretonne-reader -p cretonne-tools |
|||
|
@ -1,5 +1,5 @@ |
|||
|
|||
extern crate cretonne; |
|||
extern crate ctonfile; |
|||
extern crate cton_reader; |
|||
|
|||
fn main() {} |
|||
|
Loading…
Reference in new issue