sapling/rust/treedirstate/Cargo.toml
Mark Thomas 92b2ce7563 treedirstate: add Python linkage
Adds a python module that uses the Rust treedirstate to replace the dirstate
map.

Differential Revision: https://phab.mercurial-scm.org/D1401
2017-11-28 04:51:38 -08:00

27 lines
503 B
TOML

[package]
name = "rusttreedirstate"
version = "0.1.0"
authors = ["Facebook Source Control Team <sourcecontrol-dev@fb.com>"]
[profile.release]
lto = true
[lib]
name = "rusttreedirstate"
crate-type = ["cdylib"]
[dependencies]
byteorder = "*"
error-chain = "*"
[dev-dependencies]
itertools = "0.7.2"
quickcheck = "*"
tempdir = "*"
[dependencies.cpython]
version = "0.1"
default-features = false
features = ["python27-sys", "extension-module-2-7"]
git = "https://github.com/dgrunwald/rust-cpython.git"