mirror of
https://github.com/facebook/sapling.git
synced 2025-01-08 22:56:44 +03:00
37c696c443
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
22 lines
433 B
TOML
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"]
|