sapling/eden/mononoke/bookmarks/Cargo.toml
Radu Szasz 5fb5d23ec8 Make tokio-0.2 include test-util feature
Summary:
This feature is useful for testing time-dependent stuff (e.g. it
allows you to stop/forward time). It's already included in the buck build.

Reviewed By: SkyterX

Differential Revision: D25946732

fbshipit-source-id: 5e7b69967a45e6deaddaac34ba78b42d2f2ad90e
2021-01-18 10:38:08 -08:00

27 lines
962 B
TOML

[package]
name = "bookmarks"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs"]
[dependencies]
bookmarks_types = { path = "bookmarks_types" }
context = { path = "../server/context" }
mononoke_types = { path = "../mononoke_types" }
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.5", features = ["async-await", "compat"] }
thiserror = "1.0"
[dev-dependencies]
mononoke_types-mocks = { path = "../mononoke_types/mocks" }
ascii_ext = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
fbinit = { git = "https://github.com/facebookexperimental/rust-shed.git", branch = "master" }
ascii = "1.0"
quickcheck = "0.9"
tokio = { version = "=0.2.13", features = ["full", "test-util"] }
tokio-compat = "0.1"