fork of https://github.com/rustwasm/wasm-pack for the needs of NextGraph.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Ashley Williams 7260199a0f fix(use): remove unused use statement 7 years ago
..
bindgen.rs feat(style): appease cargo fmt 7 years ago
build.rs feat(style): appease cargo fmt 7 years ago
lib.rs feat(lib): reorg manifest work into mod 7 years ago
main.rs feat(lib): reorg manifest work into mod 7 years ago
manifest.rs feat(lib): reorg manifest work into mod 7 years ago
readme.rs fix(use): remove unused use statement 7 years ago

readme.rs

use std::fs;
use failure::Error;

pub fn copy_from_crate(path: &str) -> Result<(), Error> {
let crate_readme_path = format!("{}/README.md", path);
let new_readme_path = format!("{}/pkg/README.md", path);
fs::copy(&crate_readme_path, &new_readme_path)?;
Ok(())
}