Rename 'cton_*' library names to match the 'cretonne_*' crate names.
This renames `cton_frontend` to `cretonne_frontend` and so on. This fixes the first part of #287.
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
//! CLI tool to use the functions provided by the [cretonne-wasm](../cton_wasm/index.html) crate.
|
||||
//! CLI tool to use the functions provided by the [cretonne-wasm](../cretonne_wasm/index.html)
|
||||
//! crate.
|
||||
//!
|
||||
//! Reads Wasm binary files, translates the functions' code to Cretonne IR.
|
||||
#![cfg_attr(feature = "cargo-clippy", allow(too_many_arguments, cyclomatic_complexity))]
|
||||
@@ -6,7 +7,7 @@
|
||||
use cretonne::Context;
|
||||
use cretonne::print_errors::{pretty_error, pretty_verifier_error};
|
||||
use cretonne::settings::FlagsOrIsa;
|
||||
use cton_wasm::{translate_module, DummyEnvironment, ModuleEnvironment};
|
||||
use cretonne_wasm::{translate_module, DummyEnvironment, ModuleEnvironment};
|
||||
use std::error::Error;
|
||||
use std::fs::File;
|
||||
use std::io;
|
||||
|
||||
Reference in New Issue
Block a user