sapling/eden/scm/lib/hgcommands/Cargo.toml
Jun Wu 12eaf82291 hgcommands: add edenfs status fast path
Summary: Make `hg status` use the EdenFS Thrift path, similar to the telemetry wrapper.

Reviewed By: DurhamG

Differential Revision: D19325641

fbshipit-source-id: 14777a252d7cb433316511a2a1f1a6649e9cb020
2020-01-13 14:23:34 -08:00

45 lines
1.1 KiB
TOML

[package]
name = "hgcommands"
version = "0.1.0"
edition = "2018"
[features]
default = ["python2"]
python2 = []
python3 = []
[dependencies]
anyhow = "1.0.20"
bindings = { path = "../../edenscmnative/bindings" }
blackbox = { path = "../blackbox" }
clidispatch = { path = "../clidispatch" }
cliparser = { path = "../cliparser", features = ["python"] }
cpython-ext = { path = "../cpython-ext" }
edenapi = { path = "../edenapi" }
edenfs-client = { path = "../edenfs-client"}
flate2 = "1"
hgtime = { path = "../hgtime"}
indexedlog = { path = "../indexedlog" }
libc = "0.2"
mincode = { path = "../mincode"}
parking_lot = "0.9"
procinfo = { path = "../procinfo"}
pytracing = { path = "../../edenscmnative/bindings/modules/pytracing" }
revisionstore = { path = "../revisionstore"}
tracing = "0.1"
tracing-collector = { path = "../tracing-collector" }
types = { path = "../types" }
util = { path = "../util" }
zstd = "0.4"
[dependencies.encoding]
path = "../encoding"
[dependencies.cpython]
version = "0.3"
default-features = false
features = ["python27-sys"]
[dependencies.python27-sys]
version = "0.3"