sapling/eden/scm/lib/cliparser/Cargo.toml
Jun Wu 8703970cea py3: update Cargo.toml to make py3 buildable
Summary:
This makes `make hg3` work. It requires cleaning up the `build` directory when
switching between py2 and py3 build, which will be fixed later.

Reviewed By: DurhamG

Differential Revision: D19604824

fbshipit-source-id: 060ff313420126a5dba935c4451b45dc9af45f13
2020-01-28 13:39:38 -08:00

18 lines
443 B
TOML

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