Moved fs to it's own crate, build failing due to cyclic dependency on rope

This commit is contained in:
Mikayla Maki 2022-10-11 13:03:36 -07:00
parent a833652077
commit 0a8e2f6bb0
7 changed files with 96 additions and 58 deletions

18
crates/fs/Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "fs"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/fs.rs"
[dependencies]
collections = { path = "../collections" }
fsevent = { path = "../fsevent" }
anyhow = "1.0.57"
async-trait = "0.1"
futures = "0.3"
parking_lot = "0.11.1"
smol = "1.2.5"
text = { path = "../text" }
util = { path = "../util" }