sapling/lib/revisionstore/Cargo.toml
Zeyi (Rice) Fan 951b9e95f5 getdeps: add rust_static_library to build Rust crate
Reviewed By: simpkins

Differential Revision: D16945510

fbshipit-source-id: a7a88cd94235e3f8c01235d7e7e500c90bde3b38
2019-09-26 15:50:51 -07:00

37 lines
849 B
TOML

[package]
name = "revisionstore"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2018"
[features]
default = []
for-tests = []
[dependencies]
bytes = { version = "0.4.11", features = ["serde"] }
byteorder = "1.2.7"
configparser = { path = "../configparser" }
edenapi = { path = "../edenapi" }
indexedlog = { path = "../indexedlog" }
failure = "0.1.3"
lz4-pyframe = { path = "../lz4-pyframe" }
memmap = "0.7.0"
mpatch = { path = "../mpatch" }
parking_lot = "0.9"
rust-crypto = "*"
serde = "1.0.84"
serde_derive = "1.0.84"
tempfile = "3.0.4"
types = { path = "../types" }
util = { path = "../util" }
[dev-dependencies]
rand = "0.6"
rand_chacha = "0.1.0"
quickcheck = "0.6.2"
types = { path = "../types", default-features = false, features = ["for-tests"] }
[lib]
crate-type = ["staticlib", "lib"]