sapling/eden/scm/edenscmnative/bindings/Cargo.toml
Stefan Filip de9b34e83a bindings: add pyhgmetrics to bind the hg-metrics crate
Summary: Exposing the hg-metrics crate to the Python application.

Reviewed By: quark-zju

Differential Revision: D23577875

fbshipit-source-id: 1d919160f8514ae8bfcb0171a0c9d1d9d0de80e6
2020-09-09 17:35:48 -07:00

56 lines
2.0 KiB
TOML

[package]
name = "bindings"
version = "0.1.0"
edition = "2018"
[lib]
name = "bindings"
[features]
default = []
python2 = ["pybytes/python2", "pytracing/python2", "pyindexes/python2", "pydirs/python2"]
python3 = ["pybytes/python3", "pytracing/python3", "pyindexes/python3", "pydirs/python3"]
[profile.release]
debug = true
incremental = true
lto = false
[dependencies]
cpython-ext = { path = "../../lib/cpython-ext", default-features = false }
cpython = { version = "0.5", default-features = false }
pyblackbox = { path = "modules/pyblackbox" }
pybookmarkstore = { path = "modules/pybookmarkstore" }
pybytes = { path = "modules/pybytes" }
pycliparser = { path = "modules/pycliparser" }
pyconfigparser = { path = "modules/pyconfigparser" }
pydag = { path = "modules/pydag" }
pydiffhelpers = { path = "modules/pydiffhelpers" }
pydirs = { path = "modules/pydirs" }
pyedenapi = { path = "modules/pyedenapi" }
pyerror = { path = "modules/pyerror" }
pyfs = { path = "modules/pyfs" }
pyhgmetrics = { path = "modules/pyhgmetrics" }
pyhgtime = { path = "modules/pyhgtime" }
pyindexes = { path = "modules/pyindexes", default-features = false }
pylz4 = { path = "modules/pylz4" }
pymanifest = { path = "modules/pymanifest" }
pymetalog = { path = "modules/pymetalog" }
pymutationstore = { path = "modules/pymutationstore" }
pynodemap = { path = "modules/pynodemap" }
pypager = { path = "modules/pypager" }
pypathmatcher = { path = "modules/pypathmatcher" }
pyprocess = { path = "modules/pyprocess" }
pyregex = { path = "modules/pyregex" }
pyrenderdag = { path = "modules/pyrenderdag" }
pyrevisionstore = { path = "modules/pyrevisionstore" }
pyrevlogindex = { path = "modules/pyrevlogindex" }
pythreading = { path = "modules/pythreading" }
pytracing = { path = "modules/pytracing", default-features = false }
pytreestate = { path = "modules/pytreestate" }
pyvlq = { path = "modules/pyvlq" }
pyworker = { path = "modules/pyworker" }
pyworkingcopy = { path = "modules/pyworkingcopy" }
pyzstd = { path = "modules/pyzstd" }
pyzstore = { path = "modules/pyzstore" }