sapling/eden/mononoke/lfs_server/Cargo.toml
Mark Juggurnauth-Thomas 8f8d92dec1 lfs_server: use RepoFactory to construct repositories
Summary: Use `RepoFactory` to construct repositories in the LFS server.

Reviewed By: krallin

Differential Revision: D27363465

fbshipit-source-id: 09d5d32a133f166c6f308d56b2fb02f00031a179
2021-04-07 14:01:48 -07:00

61 lines
3.0 KiB
TOML

[package]
name = "lfs_server"
version = "0.1.0"
authors = ["Facebook"]
edition = "2018"
license = "GPLv2+"
[dependencies]
anyhow = "1.0"
async-trait = "0.1.45"
blobrepo = { version = "0.1.0", path = "../blobrepo" }
blobstore = { version = "0.1.0", path = "../blobstore" }
bytes = { version = "0.5", features = ["serde"] }
cached_config = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
clap = "2.33"
cloned = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
cmdlib = { version = "0.1.0", path = "../cmdlib" }
context = { version = "0.1.0", path = "../server/context" }
fbinit = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
filestore = { version = "0.1.0", path = "../filestore" }
futures = { version = "0.3.13", features = ["async-await", "compat"] }
futures-util = "0.3.7"
gotham = { version = "=0.5.0", default-features = false }
gotham_derive = "=0.5.0"
gotham_ext = { version = "0.1.0", path = "../gotham_ext" }
http = "0.2"
hyper = "0.13.10"
hyper-openssl = "0.8"
itertools = "0.8"
lfs_protocol = { version = "0.1.0", path = "../lfs_protocol" }
lfs_server_config = { version = "0.1.0", path = "../../../configerator/structs/scm/mononoke/lfs_server" }
maplit = "1.0"
metaconfig_parser = { version = "0.1.0", path = "../metaconfig/parser" }
metaconfig_types = { version = "0.1.0", path = "../metaconfig/types" }
mime = "0.3.14"
mononoke_types = { version = "0.1.0", path = "../mononoke_types" }
once_cell = "1.4"
permission_checker = { version = "0.1.0", path = "../permission_checker" }
pin-project = "0.4"
rand = { version = "0.7", features = ["small_rng"] }
redactedblobstore = { version = "0.1.0", path = "../blobstore/redactedblobstore" }
regex = "1.4.2"
repo_factory = { version = "0.1.0", path = "../repo_factory" }
scuba_ext = { version = "0.1.0", path = "../common/scuba_ext" }
secure_utils = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
serde = { version = "=1.0.118", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["float_roundtrip"] }
slog = { version = "2.5", features = ["max_level_debug"] }
stats = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
thiserror = "1.0"
time_ext = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
time_window_counter = { version = "0.1.0", path = "../time_window_counter" }
tokio = { version = "0.2.25", features = ["full", "test-util"] }
[dev-dependencies]
fbinit-tokio-02 = { version = "0.1.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
memblob = { version = "0.1.0", path = "../blobstore/memblob" }
mononoke_types-mocks = { version = "0.1.0", path = "../mononoke_types/mocks" }
pretty_assertions = "0.6"
test_repo_factory = { version = "0.1.0", path = "../repo_factory/test_repo_factory" }