sapling/lib/types/Cargo.toml
Jun Wu 616306543b codemod: use explicit versions in Cargo.toml
Summary:
This is done by running `fix-code.py`. Note that those strings are
semvers so they do not pin down the exact version. An API-compatiable upgrade
is still possible.

Reviewed By: ikostia

Differential Revision: D10213073

fbshipit-source-id: 82f90766fb7e02cdeb6615ae3cb7212d928ed48d
2018-11-15 18:54:06 -08:00

18 lines
316 B
TOML

[package]
name = "types"
version = "0.1.0"
[features]
default = []
for-tests = ["rand", "quickcheck"]
[dependencies]
failure = "0.1.3"
failure_derive = "0.1.3"
rand = { version = "0.5.5", optional = true }
quickcheck = { version = "0.6.2", optional = true }
[dev-dependencies]
rand = "0.5.5"
quickcheck = "0.6.2"