sapling/eden/scm/lib/hgcommands/Cargo.toml
Adam Simpkins ab3a7cb21f Move fb-mercurial sources into an eden/scm subdirectory.
Summary:
In preparation for merging fb-mercurial sources to the Eden repository,
move everything from the top-level directory into an `eden/scm`
subdirectory.
2019-11-13 16:04:48 -08:00

44 lines
1.0 KiB
TOML

[package]
name = "hgcommands"
version = "0.1.0"
edition = "2018"
[features]
default = ["python2"]
python2 = []
python3 = []
[dependencies]
bindings = { path = "../../edenscmnative/bindings" }
blackbox = { path = "../blackbox" }
clidispatch = { path = "../clidispatch" }
cliparser = { path = "../cliparser", features = ["python"] }
cpython-ext = { path = "../cpython-ext" }
edenapi = { path = "../edenapi" }
failure = "0.1"
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"