view rust/hg-cpython/Cargo.toml @ 43214:649a9601b9e2

rust-cpython: drop direct dependency on python(27|3)_sys We no longer use it.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 13 Oct 2019 21:47:05 +0900
parents 9bbe08abaf48
children 8d432d3a2d7c
line wrap: on
line source

[package]
name = "hg-cpython"
version = "0.1.0"
authors = ["Georges Racinet <gracinet@anybox.fr>"]
edition = "2018"

[lib]
name='rusthg'
crate-type = ["cdylib"]

[features]
default = ["python27"]

python27 = ["cpython/python27-sys", "cpython/extension-module-2-7"]

python3 = ["cpython/python3-sys", "cpython/extension-module"]

[dependencies]
hg-core = { path = "../hg-core" }
libc = '*'

[dependencies.cpython]
version = "0.3"
default-features = false