Release 6.0.0-rc.1

This change also includes some minor packaging changes in order to make Cargo happy.
This commit is contained in:
Lucien Greathouse
2020-03-29 16:17:09 -07:00
parent 5a5b1268d3
commit 1214fc8b0d
26 changed files with 19642 additions and 26 deletions

View File

@@ -1,10 +1,10 @@
use std::{
env,
fs::{self, File},
io,
env, io,
path::{Path, PathBuf},
};
use fs_err as fs;
use fs_err::File;
use maplit::hashmap;
use memofs::VfsSnapshot;
@@ -50,6 +50,7 @@ fn main() -> Result<(), anyhow::Error> {
"fmt" => snapshot_from_fs_path(&plugin_root.join("fmt"))?,
"http" => snapshot_from_fs_path(&plugin_root.join("http"))?,
"log" => snapshot_from_fs_path(&plugin_root.join("log"))?,
"rbx_dom_lua" => snapshot_from_fs_path(&plugin_root.join("rbx_dom_lua"))?,
"src" => snapshot_from_fs_path(&plugin_root.join("src"))?,
"modules" => VfsSnapshot::dir(hashmap! {
"roact" => VfsSnapshot::dir(hashmap! {
@@ -61,11 +62,6 @@ fn main() -> Result<(), anyhow::Error> {
"t" => VfsSnapshot::dir(hashmap! {
"lib" => snapshot_from_fs_path(&plugin_modules.join("t").join("lib"))?
}),
"rbx-dom" => VfsSnapshot::dir(hashmap! {
"rbx_dom_lua" => VfsSnapshot::dir(hashmap! {
"src" => snapshot_from_fs_path(&plugin_modules.join("rbx-dom").join("rbx_dom_lua").join("src"))?
})
}),
}),
});