sapling/eden/scm/lib/configparser/Cargo.toml
Jun Wu 715bc5d451 configparser: migrate from bytes to minibytes
Summary:
This makes it easier to further migrate to `Text` interface.
Dependent crate (`auth`) is updated.

Reviewed By: markbt

Differential Revision: D20432941

fbshipit-source-id: 1dc29d52c9b17ce14676ef0555470c6d36a09c2b
2020-03-13 10:51:41 -07:00

28 lines
459 B
TOML

[package]
name = "configparser"
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1.0.19"
dirs = "1.0.4"
indexmap = "1.0.1"
minibytes = { path = "../minibytes" }
parking_lot = "0.9"
pest = "2.1.0"
pest_derive = "2.1.0"
thiserror = "1.0.5"
util = { path = "../util" }
[dev-dependencies]
lazy_static = "1.3.0"
minibench = { path = "../minibench" }
tempdir = "0.3.7"
[[bench]]
name = "bench"
harness = false
[lib]
crate-type = ["staticlib", "lib"]