sapling/eden/mononoke/segmented_changelog/Cargo.toml
Lukas Piatkowski 07e0427eb4 mononoke: make segmented_changelog OSS buildable
Reviewed By: krallin

Differential Revision: D21980974

fbshipit-source-id: 60e8f0e78b2bd654e5109b39c85f08ee5b3e9490
2020-06-12 06:54:32 -07:00

36 lines
1.3 KiB
TOML

[package]
name = "segmented_changelog"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["schemas/**/*.sql", "src/**/*.rs"]
[dependencies]
bulkops = { path = "../bulkops" }
changeset_fetcher = { path = "../blobrepo/changeset_fetcher" }
changesets = { path = "../changesets" }
context = { path = "../server/context" }
dag = { path = "../../scm/lib/dag" }
mononoke_types = { path = "../mononoke_types" }
phases = { path = "../phases" }
sql_construct = { path = "../common/sql_construct" }
sql_ext = { path = "../common/rust/sql_ext" }
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"
futures = { version = "0.3", features = ["async-await", "compat"] }
maplit = "1.0"
[dev-dependencies]
blobrepo = { path = "../blobrepo" }
fixtures = { path = "../tests/fixtures" }
mercurial_types = { path = "../mercurial/types" }
mononoke_types-mocks = { path = "../mononoke_types/mocks" }
revset = { path = "../revset" }
tests_utils = { path = "../tests/utils" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
futures-old = { package = "futures", version = "0.1" }
futures-util = "0.3"
tokio-compat = "0.1"