sapling/eden/scm/lib/hgcommands/Cargo.toml
Jun Wu 049d411aa0 hgcommands: init EDENSCM_LOG "env_logger" that writes to error stream
Summary:
Similar to D26142175 (324f47b1f0), initialize the logger that writes to the error stream of
IO.

Reviewed By: sfilipco

Differential Revision: D26518014

fbshipit-source-id: 2547f4a8f3dba1f624fd00798672f1148869e250
2021-02-19 15:22:07 -08:00

50 lines
1.8 KiB
TOML

[package]
name = "hgcommands"
version = "0.1.0"
edition = "2018"
[features]
default = ["python2"]
fb = ["configparser/fb", "version/generated"]
python2 = ["bindings/python2", "pytracing/python2", "python27-sys", "cpython-ext/python2", "cpython/python27-sys"]
python3 = ["bindings/python3", "pytracing/python3", "python3-sys", "cpython-ext/python3", "cpython/python3-sys"]
[dependencies]
anyhow = "1.0.20"
async-runtime = { path = "../async-runtime" }
bindings = { path = "../../edenscmnative/bindings", default-features = false }
blackbox = { path = "../blackbox" }
clidispatch = { path = "../clidispatch" }
cliparser = { path = "../cliparser", features = ["python"] }
cpython-ext = { path = "../cpython-ext", default-features = false }
cpython = { version = "0.5", default-features = false }
configparser = { path = "../configparser" }
dag = { path = "../dag" }
edenapi = { path = "../edenapi" }
edenapi_types = { path = "../edenapi/types" }
edenfs-client = { path = "../edenfs-client"}
encoding = { path = "../encoding" }
flate2 = "1"
fsyncglob = { path = "../fsyncglob" }
futures = { version = "0.3.5", features = ["async-await", "compat"] }
hgtime = { path = "../hgtime"}
indexedlog = { path = "../indexedlog" }
indicatif = "0.15"
libc = "0.2"
mincode = { path = "../mincode"}
parking_lot = "0.9"
procinfo = { path = "../procinfo"}
python27-sys = { version = "0.5", optional = true }
python3-sys = { version = "0.5", optional = true }
pytracing = { path = "../../edenscmnative/bindings/modules/pytracing", default-features = false }
revisionstore = { path = "../revisionstore"}
taggederror = { path = "../taggederror"}
thiserror = "1.0.5"
tracing = "0.1"
tracing-collector = { path = "../tracing-collector" }
tracing-subscriber = "0.2"
types = { path = "../types" }
util = { path = "../util" }
version = { path = "../version" }
zstd = "0.5"