sapling/eden/scm/lib/edenapi/Cargo.toml
Arun Kulshreshtha 3327e15201 edenapi: percent-encode repo names
Summary: Instead of restricting the allowed characters in a repo name, allow any UTF-8 string. The string will be percent-encoded before being used in URLs.

Reviewed By: quark-zju

Differential Revision: D22559830

fbshipit-source-id: f9caa51d263e06d424531e0947766f4fd37b035f
2020-07-16 13:32:19 -07:00

39 lines
984 B
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]
auth = { path = "../auth" }
configparser = { path = "../configparser" }
edenapi_types = { path = "types" }
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"] }
url = "2.1.0"