sapling/eden/scm/lib/edenapi/Cargo.toml
Arun Kulshreshtha a745a145b1 edenapi: optionally print log messages
Summary: Add log messages for debugging using the `tracing` crate, which allows them to be enabled via `env_logger`.

Reviewed By: quark-zju

Differential Revision: D23858076

fbshipit-source-id: a8ef1afac6c9ecbfb5d6d78232aa0d03a2fe2054
2020-09-23 17:19:28 -07:00

42 lines
1.1 KiB
TOML

# @generated by autocargo from //eden/scm/lib/edenapi:[edenapi,edenapi_cli]
[package]
name = "edenapi"
edition = "2018"
version = "0.1.0"
include = ["src/**/*.rs", "src/bin/cli.rs"]
[lib]
path = "src/lib.rs"
[[bin]]
name = "edenapi_cli"
path = "src/bin/cli.rs"
[dependencies]
async-runtime = { path = "../async-runtime" }
auth = { path = "../auth" }
configparser = { path = "../configparser" }
edenapi_types = { path = "types" }
hg-http = { path = "../hg-http" }
http-client = { path = "../http-client" }
types = { path = "../types" }
anyhow = "1.0"
async-trait = "0.1.29"
atty = "0.2"
dirs = "2.0"
env_logger = "0.7"
futures = { version = "0.3.5", features = ["async-await", "compat"] }
http = "0.2"
indicatif = { version = "0.14", features = ["with_rayon"] }
itertools = "0.8"
log = { version = "0.4.8", features = ["kv_unstable"] }
percent-encoding = "2.1"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_cbor = "0.11"
serde_json = "1.0"
structopt = "0.3.7"
thiserror = "1.0"
tokio = { version = "=0.2.13", features = ["full"] }
tracing = "0.1"
url = "2.1.0"