the edenfsctl program depends on python-toml

Summary:
Update the getdeps manifest and Eden's CMake files to indicate that the
edenfsctl program depends on python-toml.

Reviewed By: chadaustin

Differential Revision: D17401215

fbshipit-source-id: f512678d8bca9c7b2b4d25bf9c3ecd7eed825de9
This commit is contained in:
Adam Simpkins 2019-09-20 11:33:28 -07:00 committed by Facebook Github Bot
parent 6b3bafe54f
commit 40ab42dc42
3 changed files with 4 additions and 0 deletions

View File

@ -66,6 +66,8 @@ set(EDEN_HAVE_ROCKSDB ${RocksDB_FOUND})
find_package(Sqlite3 REQUIRED)
set(EDEN_HAVE_SQLITE3 ${SQLITE3_FOUND})
find_package(python-toml REQUIRED)
find_package(CURL)
set(EDEN_HAVE_CURL ${CURL_FOUND})

View File

@ -19,6 +19,7 @@ cpptoml
rocksdb
libgit2
fb-mercurial
python-toml
# macOS ships with sqlite3, and some of the core system
# frameworks require that that version be linked rather

View File

@ -13,4 +13,5 @@ add_fb_python_executable(
eden_overlay_thrift_py
eden_service_thrift_py
FBThrift::thrift_py_inspect
python-toml::python-toml
)