sapling/lib/cliparser/Cargo.toml
Jun Wu 28a5be0d2c cliparser: fix Cargo.toml
Summary:
This removes the warning:

  warning: cliparser/Cargo.toml: `default-features = [".."]` was found in [features]. Did you mean to use `default = [".."]`?

Reviewed By: sfilipco

Differential Revision: D16672732

fbshipit-source-id: 2c7478c54f0302113d4e065f88631c096757e829
2019-08-06 15:52:27 -07:00

22 lines
473 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 = { path = "../shlex" }
cpython-ext = { path = "../cpython-ext", optional = true }
[dependencies.cpython]
version = "0.3"
default-features = false
features = ["python27-sys", "extension-module-2-7"]
optional = true
[features]
default = []
python = ["cpython-ext", "cpython"]