sapling/eden/scm/lib/cpython-ext/Cargo.toml
Carolyn Busch 4eeab3b81b Update cpython to 0.5
Summary:
D21270958 updated the cpython, python27-sys, and python3-sys crates to 0.5. Update
the Mercurial cargo dependencies to match.

Reviewed By: xavierd

Differential Revision: D21281875

fbshipit-source-id: ccad68749a25d11240351b5faeef27cb9c693456
2020-04-28 11:47:41 -07:00

23 lines
542 B
TOML

[package]
name = "cpython-ext"
version = "0.1.0"
edition = "2018"
[features]
default = ["python2"]
python2 = ["python27-sys", "cpython/python27-sys"]
python3 = ["python3-sys", "cpython/python3-sys"]
[dependencies]
anyhow = "1.0.20"
cpython = { version = "0.5", default-features = false }
encoding = { path = "../encoding" }
lazy_static = "1"
libc = "0.2"
parking_lot = "0.9"
python27-sys = { version = "0.5", optional = true }
python3-sys = { version = "0.5", optional = true }
serde = "1"
thiserror = "1.0.5"
types = { path = "../types" }