sapling/eden/scm/lib/util/Cargo.toml
Durham Goode 26564596a1 utils: add background process utility
Summary:
Similar to the Python runbgcommand (extutil.py), this is a Rust utility that runs a
detached background process in a cross platform way.

This will be used in a later diff to run dynamicconfig generation in the
background.

Reviewed By: quark-zju

Differential Revision: D22712629

fbshipit-source-id: a317465bf03c96d977a203678e2bef13ce57cc12
2020-08-16 16:55:59 -07:00

21 lines
364 B
TOML

[package]
name = "util"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1.0.19"
dirs = "2.0.2"
fs2 = "0.4"
libc = "0.2"
rand = "0.7"
shellexpand = "1.0.0"
tempfile = "3.0.4"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["fileapi", "winnt", "handleapi", "winbase"] }
[dev-dependencies]
memmap = "0.7"
tempdir = "0.3.7"