sapling/eden/scm/lib/dynamicconfig/Cargo.toml
Durham Goode 968e57735d configs: use zstd compression for remote config request
Summary:
The remote configs are non-minified json, so using some compression
should reduce their size tremendously.

Reviewed By: quark-zju

Differential Revision: D22336251

fbshipit-source-id: 77282aae57a8e37e3462f6379dedebd2978a4d0e
2020-07-02 09:02:15 -07:00

28 lines
541 B
TOML

[package]
name = "dynamicconfig"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1.0.19"
configparser = { path = "../configparser" }
filetime = "0.2.9"
hgtime = { path = "../hgtime" }
hostname = "0.3"
minibytes = { path = "../minibytes" }
os_info = "2.0.1"
reqwest = { version = "0.10", features=["blocking"] }
serde_json = "1.0"
sha2 = "0.8"
thrift-types = { path = "../thrift-types" }
types = { path = "../types" }
util = { path = "../util" }
zstd = "0.4"
[dev-dependencies]
tempfile = "3.1"
[features]
default = []
fb = []