sapling/lib/cliparser/Cargo.toml
Jun Wu 37c696c443 cliparser: stop using vendored shlex
Summary:
The vendored shlex crate was used to unblock progress. Now that `shlex`
is available in tp2 crate, let's drop the vendored shlex.

Reviewed By: farnz

Differential Revision: D16706184

fbshipit-source-id: f110ee91d8c9cc61b94fbafbf269f260bd73fd70
2019-08-08 22:54:08 -07:00

22 lines
433 B
TOML

[package]
name = "cliparser"
version = "0.0.1"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2018"
[dependencies]
failure = "0.1.3"
lazy_static = "1.3.0"
shlex = "0.1"
cpython-ext = { path = "../cpython-ext", optional = true }
[dependencies.cpython]
version = "0.3"
default-features = false
features = ["python27-sys"]
optional = true
[features]
default = []
python = ["cpython-ext", "cpython"]