sapling/eden/mononoke/segmented_changelog/Cargo.toml

38 lines
1.4 KiB
TOML
Raw Normal View History

[package]
name = "segmented_changelog"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["schemas/**/*.sql", "src/**/*.rs"]
[dependencies]
blobstore = { path = "../blobstore" }
bulkops = { path = "../bulkops" }
changeset_fetcher = { path = "../blobrepo/changeset_fetcher" }
changesets = { path = "../changesets" }
context = { path = "../server/context" }
dag = { path = "../../scm/lib/dag" }
mincode = { path = "../../scm/lib/mincode" }
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"
async-trait = "0.1.29"
futures = { version = "0.3.5", features = ["async-await", "compat"] }
maplit = "1.0"
tokio = { version = "=0.2.13", features = ["full"] }
[dev-dependencies]
blobrepo = { path = "../blobrepo" }
fixtures = { path = "../tests/fixtures" }
memblob = { path = "../blobstore/memblob" }
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" }
tokio-compat = "0.1"