rust/hg-cpython/Cargo.toml
author Yuya Nishihara <yuya@tcha.org>
Fri, 31 Jan 2020 00:01:29 +0900
changeset 44231 25ed4d8e707f
parent 43289 8d432d3a2d7c
child 44305 d8d4fa9a7f18
permissions -rw-r--r--
rust-cpython: bump cpython to 0.4 to switch to upstreamed PySharedRef

[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"]

# Features to build an extension module:
python27 = ["cpython/python27-sys", "cpython/extension-module-2-7"]
python3 = ["cpython/python3-sys", "cpython/extension-module"]

# Enable one of these features to build a test executable linked to libpython:
# e.g. cargo test --no-default-features --features python27-bin
python27-bin = ["cpython/python27-sys"]
python3-bin = ["cpython/python3-sys"]

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

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