sapling/eden/mononoke/segmented_changelog/Cargo.toml
Mark Juggurnauth-Thomas 0eb32649a6 segmented_changelog: resync autocargo
Summary: The `dag` dependency now generates a `for-tests` feature requirement.

Reviewed By: sfilipco, krallin

Differential Revision: D24888944

fbshipit-source-id: 6da646d71ae99118dcdc33673565056462a4c8ad
2020-11-11 09:31:42 -08:00

40 lines
1.5 KiB
TOML

[package]
name = "segmented_changelog"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["schemas/**/*.sql", "src/**/*.rs"]
[dependencies]
blobrepo = { path = "../blobrepo" }
blobstore = { path = "../blobstore" }
bookmarks = { path = "../bookmarks" }
bulkops = { path = "../bulkops" }
changeset_fetcher = { path = "../blobrepo/changeset_fetcher" }
changesets = { path = "../changesets" }
context = { path = "../server/context" }
dag = { path = "../../scm/lib/dag", features = ["for-tests"] }
mincode = { path = "../../scm/lib/mincode" }
mononoke_types = { path = "../mononoke_types" }
sql_construct = { path = "../common/sql_construct" }
sql_ext = { path = "../common/rust/sql_ext" }
scuba = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
sql = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
stats = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
anyhow = "1.0"
async-trait = "0.1.29"
futures = { version = "0.3.5", features = ["async-await", "compat"] }
maplit = "1.0"
slog = { version = "2.5", features = ["max_level_debug"] }
tokio = { version = "=0.2.13", features = ["full"] }
[dev-dependencies]
fixtures = { path = "../tests/fixtures" }
mononoke_types-mocks = { path = "../mononoke_types/mocks" }
phases = { path = "../phases" }
revset = { path = "../revset" }
tests_utils = { path = "../tests/utils" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
tokio-compat = "0.1"