mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 21:25:16 +00:00
* add install command * cargo fmt * filter spec files * Update src/cli/plugin.rs Co-Authored-By: Lucien Greathouse <me@lpghatguy.com> * Update src/cli/plugin.rs Co-Authored-By: Lucien Greathouse <me@lpghatguy.com> * fix comments * encode plugin with rbx_binary * update build script * refactor pathbuf error into io error * fix rojo typo * remove snafu * Update `snapshot_from_fs_path` * Print `rerun-if-changed` even for directories, in order to run the build.rs script when files are added. * Switch `filter_map` loop to a regular for loop. I like the FP-style iterator stuff in Rust, but I think Result handling is easier in a normal loop. Also, I don't believe the result of read_dir implements `ExactSizedIterator`, so some of the wins of map+collect aren't there. * Replace Result::unwrap with ? in build.rs * Simplify error handling code in runtime * Checkout with submodules Co-authored-by: Lucien Greathouse <me@lpghatguy.com>
18 lines
505 B
TOML
18 lines
505 B
TOML
[package]
|
|
name = "memofs"
|
|
description = "Virtual filesystem with configurable backends."
|
|
version = "0.1.1"
|
|
authors = ["Lucien Greathouse <me@lpghatguy.com>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
homepage = "https://github.com/rojo-rbx/rojo/tree/master/memofs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
crossbeam-channel = "0.4.0"
|
|
fs-err = "2.3.0"
|
|
notify = "4.0.15"
|
|
serde = { version = "1.0", features = ["derive"] }
|