diff --git a/Cargo.toml b/Cargo.toml index 47f225227d..b4c4a6d256 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] -name = "wasm-singlepass-experiment" +name = "lightbeam" version = "0.0.0" -authors = ["Dan Gohman "] +authors = ["The Lightbeam Project Developers"] license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" categories = ["wasm"] diff --git a/README.md b/README.md index a17e259264..5402e47a49 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Wasm Singlepass Experiment +# Lightbeam This is an early-stage experimental project to build a single-pass wasm-function-to-machine-code translator. @@ -13,4 +13,4 @@ WebAssembly works at a low level, for learning assembly programming, or both! And we're happy to mentor. So welcome, and check out the [issue tracker] to see what's happening and how to get involved! -[issue tracker]: https://github.com/CraneStation/wasm-singlepass-experiment/issues +[issue tracker]: https://github.com/CraneStation/lightbeam/issues diff --git a/examples/test.rs b/examples/test.rs index c78b05082b..4948fb8992 100644 --- a/examples/test.rs +++ b/examples/test.rs @@ -1,10 +1,10 @@ -extern crate wasm_singlepass_experiment; +extern crate lightbeam; +use lightbeam::translate; use std::fs::File; use std::io; use std::io::Read; use std::path::Path; -use wasm_singlepass_experiment::translate; fn read_to_end>(path: P) -> io::Result> { let mut buffer = Vec::new();