2018-10-13 00:48:03 +03:00
|
|
|
[package]
|
2019-08-09 08:45:25 +03:00
|
|
|
name = "hgcommands"
|
2018-10-13 00:48:03 +03:00
|
|
|
version = "0.1.0"
|
2019-06-03 17:19:38 +03:00
|
|
|
edition = "2018"
|
2018-10-13 00:48:03 +03:00
|
|
|
|
2019-10-29 01:42:14 +03:00
|
|
|
[features]
|
|
|
|
default = ["python2"]
|
|
|
|
python2 = []
|
|
|
|
python3 = []
|
|
|
|
|
2018-10-13 00:48:03 +03:00
|
|
|
[dependencies]
|
2019-09-21 03:43:59 +03:00
|
|
|
bindings = { path = "../../edenscmnative/bindings" }
|
2019-09-21 03:43:59 +03:00
|
|
|
blackbox = { path = "../blackbox" }
|
2019-07-27 06:34:57 +03:00
|
|
|
clidispatch = { path = "../clidispatch" }
|
2019-08-09 08:45:25 +03:00
|
|
|
cliparser = { path = "../cliparser", features = ["python"] }
|
2019-08-09 08:45:25 +03:00
|
|
|
cpython-ext = { path = "../cpython-ext" }
|
2019-10-28 21:11:11 +03:00
|
|
|
edenapi = { path = "../edenapi" }
|
2019-08-29 05:22:46 +03:00
|
|
|
failure = "0.1"
|
2019-11-05 02:49:48 +03:00
|
|
|
flate2 = "1"
|
2019-11-08 01:19:52 +03:00
|
|
|
hgtime = { path = "../hgtime"}
|
|
|
|
indexedlog = { path = "../indexedlog" }
|
2019-10-24 23:38:34 +03:00
|
|
|
libc = "0.2"
|
2019-11-05 02:49:48 +03:00
|
|
|
mincode = { path = "../mincode"}
|
2019-11-05 02:49:48 +03:00
|
|
|
parking_lot = "0.9"
|
2019-09-21 03:43:59 +03:00
|
|
|
procinfo = { path = "../procinfo"}
|
2019-11-05 02:49:48 +03:00
|
|
|
pytracing = { path = "../../edenscmnative/bindings/modules/pytracing" }
|
2019-08-16 05:35:17 +03:00
|
|
|
revisionstore = { path = "../revisionstore"}
|
2019-11-05 02:49:48 +03:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-collector = { path = "../tracing-collector" }
|
2019-08-21 02:38:50 +03:00
|
|
|
types = { path = "../types" }
|
|
|
|
util = { path = "../util" }
|
2019-11-05 02:49:48 +03:00
|
|
|
zstd = "0.4"
|
2018-10-13 00:48:03 +03:00
|
|
|
|
|
|
|
[dependencies.encoding]
|
|
|
|
path = "../encoding"
|
|
|
|
|
|
|
|
[dependencies.cpython]
|
2019-08-05 19:53:41 +03:00
|
|
|
version = "0.3"
|
2018-10-13 00:48:03 +03:00
|
|
|
default-features = false
|
|
|
|
features = ["python27-sys"]
|
|
|
|
|
|
|
|
[dependencies.python27-sys]
|
2019-08-05 19:53:41 +03:00
|
|
|
version = "0.3"
|