Daily common/rust/cargo_from_buck/bin/autocargo

Reviewed By: farnz

Differential Revision: D31646308

fbshipit-source-id: e81b56f75fe077f0eb9ead44e4461263d27b6cbd
This commit is contained in:
CodemodService Bot 2021-10-27 11:23:13 -07:00 committed by Facebook GitHub Bot
parent 94adf71246
commit 01acc9c287
3 changed files with 36 additions and 1 deletions

View File

@ -274,6 +274,7 @@ members = [
"derived_data/fsnodes",
"derived_data/manager",
"derived_data/mercurial_derived_data",
"derived_data/remote",
"derived_data/skeleton_manifest",
"derived_data/test",
"derived_data/test_utils",

View File

@ -0,0 +1,35 @@
# @generated by autocargo
[package]
name = "derived_data_remote"
version = "0.1.0"
authors = ["Facebook"]
edition = "2021"
license = "GPLv2+"
[lib]
path = "lib.rs"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.51"
mononoke_types = { version = "0.1.0", path = "../../mononoke_types" }
[patch.crates-io]
curl-sys = { git = "https://github.com/mzr/curl-rust", rev = "97694cf73ea9309d9e8ed067ec0c05367841d405" }
daemonize = { git = "https://github.com/krallin/daemonize", rev = "f7be28efa1b4a70e43bb37b5f4ff4d664992edca" }
lru-disk-cache = { git = "https://github.com/mozilla/sccache", rev = "033ebaae69beeb0ac04e8c35d6ff1103487bd9a3" }
mockall = { git = "https://github.com/fbsource/mockall", rev = "4bc4ff4ab7d04ebaa7e7c9510a3337b7dda9d324" }
mockall_derive = { git = "https://github.com/fbsource/mockall", rev = "4bc4ff4ab7d04ebaa7e7c9510a3337b7dda9d324" }
mysql_common = { git = "https://github.com/iammxt/rust_mysql_common", rev = "0e4c86952f1e799960e736c0b2bb9d2a6d935bf1" }
object = { git = "https://github.com/gimli-rs/object", rev = "9271d2cd06d1fed11259225d915178fe3824a56d" }
prost = { git = "https://github.com/gabrielrussoc/prost", branch = "protoc-runtime" }
prost-derive = { git = "https://github.com/gabrielrussoc/prost", branch = "protoc-runtime" }
prost-types = { git = "https://github.com/gabrielrussoc/prost", branch = "protoc-runtime" }
quickcheck = { git = "https://github.com/jakoschiko/quickcheck", rev = "6ecdf5bb4b0132ce66670b4d46453aa022ea892c" }
ring = { git = "https://github.com/fanzeyi/ring", branch = "main" }
rustfilt = { git = "https://github.com/jsgf/rustfilt.git", rev = "8141fa7f1caee562ee8daffb2ddeca3d1f0d36e5" }
shellexpand = { git = "https://github.com/fanzeyi/shellexpand.git", rev = "179447a3f8fccd765acfd2eed15a54c716c49cfe" }
slog-syslog = { git = "https://github.com/slog-rs/syslog", rev = "c783ed8221a8f781b088e11dbf1a31ce40392cb1" }
tokio-core = { git = "https://github.com/bolinfest/tokio-core", rev = "5f37aa3c627d56ee49154bc851d6930f5ab4398f" }
toml = { git = "https://github.com/fbsource/toml", branch = "dotted-table-0.5.8" }

View File

@ -29,7 +29,6 @@ metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
path_hash = { version = "0.1.0", path = "../common/path_hash" }
rand = { version = "0.8", features = ["small_rng"] }
scopeguard = "1.0.0"
sql = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
sql_construct = { version = "0.1.0", path = "../common/sql_construct" }
sql_ext = { version = "0.1.0", path = "../common/rust/sql_ext" }