mirror of
https://github.com/facebook/sapling.git
synced 2024-12-30 16:42:57 +03:00
4e824ba5d7
Summary: A recent update to the crates in tp2 bumped the `once_cell` crate to version 0.2.0. This broke the build because the `Cargo.toml` for the `manifest` crate specified version 0.1.8. Apparently just changing the crate version to 0.2.0 fixes the build, so we weren't affected by whatever breaking changes were made to the crate. Reviewed By: DurhamG Differential Revision: D15492142 fbshipit-source-id: 552b0a751ab7c2aab5f0fbcb1124de4ea427790c
22 lines
517 B
TOML
22 lines
517 B
TOML
[package]
|
|
name = "manifest"
|
|
version = "0.1.0"
|
|
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
default = []
|
|
for-tests = ["quickcheck"]
|
|
|
|
[dependencies]
|
|
bytes = { version = "0.4.11", features = ["serde"] }
|
|
failure = "0.1.3"
|
|
once_cell = "0.2.0"
|
|
quickcheck = { version = "0.6.2", optional = true }
|
|
rust-crypto = "0.2"
|
|
types = { path = "../types" }
|
|
|
|
[dev-dependencies]
|
|
quickcheck = "0.6.2"
|
|
types = { path = "../types", default-features = false, features = ["for-tests"] }
|