sapling/eden/scm/lib/vfs/Cargo.toml
Durham Goode e97d8d8895 vfs: move vfs logic into its own crate
Summary:
This logic will be used in a variety of places (update workers, status,
etc). Let's move it somewhere common.

Reviewed By: xavierd

Differential Revision: D20771623

fbshipit-source-id: b4de7c1d20055a10bbc1143d44c55ea1045ec62a
2020-04-22 19:55:49 -07:00

15 lines
227 B
TOML

[package]
name = "vfs"
version = "0.0.1"
edition = "2018"
[dependencies]
anyhow = "1"
bytes = "0.5"
fsinfo = { path = "../fsinfo" }
types = { path = "../types"}
util = { path = "../util" }
[dev-dependencies]
tempfile = "3.0"