sapling/lib/mincode/Cargo.toml
Jun Wu e92da70818 mincode: add a basic test
Summary: Add a basic test to ensure mincode is somehow working.

Reviewed By: kulshrax

Differential Revision: D17087350

fbshipit-source-id: efa5d18e579688521e91fe28ee67f1d7f7c15558
2019-09-06 13:13:48 -07:00

18 lines
458 B
TOML

[package]
name = "mincode"
version = "0.0.1"
authors = ["David Tolnay <dtolnay@gmail.com>", "Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
edition = "2018"
license = "GPL-2.0-only"
description = "Minimal serialization format"
include = ["Cargo.toml", "src/**/*.rs"]
[dependencies]
byteorder = "1.0"
serde = "1.0"
vlqencoding = { path = "../vlqencoding" }
[dev-dependencies]
quickcheck = "0.6"
serde = { version = "1.0", features = ["derive"] }