sapling/eden/scm/edenscmnative/bindings/Cargo.toml
Jun Wu 56b1f098dd bindings: move indexes and threading to bindings
Summary:
For some reason, our linker flag `-uinitthreading` no longer works in buck opt
build. This affects the `indexes` and `threading` Python extensions. Move them
to `bindings` to solve the problem.

Reviewed By: fanzeyi

Differential Revision: D19340538

fbshipit-source-id: 0c82b472f2916229d3c5e481954b69415b5b0dc2
2020-01-09 20:02:00 -08:00

43 lines
1.4 KiB
TOML

[package]
name = "bindings"
version = "0.1.0"
edition = "2018"
[lib]
name = "bindings"
[profile.release]
debug = true
incremental = true
lto = false
[dependencies]
cpython = { version = "0.3", features = ["python27-sys"], default-features = false }
env_logger = "0.7"
pyblackbox = { path = "modules/pyblackbox" }
pybookmarkstore = { path = "modules/pybookmarkstore" }
pycliparser = { path = "modules/pycliparser" }
pyconfigparser = { path = "modules/pyconfigparser" }
pydag = { path = "modules/pydag" }
pyedenapi = { path = "modules/pyedenapi" }
pyerror = { path = "modules/pyerror" }
pyhgtime = { path = "modules/pyhgtime" }
pyindexes = { path = "modules/pyindexes" }
pylz4 = { path = "modules/pylz4" }
pymanifest = { path = "modules/pymanifest" }
pymetalog = { path = "modules/pymetalog" }
pymutationstore = { path = "modules/pymutationstore" }
pynodemap = { path = "modules/pynodemap" }
pypathmatcher = { path = "modules/pypathmatcher" }
pyrenderdag = { path = "modules/pyrenderdag" }
pyrevisionstore = { path = "modules/pyrevisionstore" }
pyrevlogindex = { path = "modules/pyrevlogindex" }
pystackdesc = { path = "modules/pystackdesc" }
pythreading = { path = "modules/pythreading" }
pytracing = { path = "modules/pytracing" }
pytreestate = { path = "modules/pytreestate" }
pyvlq = { path = "modules/pyvlq" }
pyworkingcopy = { path = "modules/pyworkingcopy" }
pyzstd = { path = "modules/pyzstd" }
pyzstore = { path = "modules/pyzstore" }