mirror of
https://github.com/facebook/sapling.git
synced 2024-12-24 13:34:37 +03:00
ab3a7cb21f
Summary: In preparation for merging fb-mercurial sources to the Eden repository, move everything from the top-level directory into an `eden/scm` subdirectory.
18 lines
458 B
TOML
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.9"
|
|
serde = { version = "1.0", features = ["derive"] }
|