Mercurial > hg
view rust/hgcli/Cargo.toml @ 46861:c7c6c11fe1e4
rust: bump rust-cpython version to 0.5.2
we need a newer version to define "property" on Rust defined object.
Differential Revision: https://phab.mercurial-scm.org/D10308
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Mon, 05 Apr 2021 12:22:12 +0200 |
parents | 57b5452a55d5 |
children |
line wrap: on
line source
[package] name = "hgcli" version = "0.1.0" build = "build.rs" authors = ["Gregory Szorc <gregory.szorc@gmail.com>"] edition = "2018" license = "GPL-2.0" readme = "README.md" [[bin]] name = "hg" path = "src/main.rs" [dependencies] jemallocator-global = { version = "0.3", optional = true } [dependencies.pyembed] git = "https://github.com/indygreg/PyOxidizer.git" rev = "4697fb25918dfad6dc73288daeea501063963a08" default-features = false [features] default = ["build-mode-pyoxidizer-exe"] jemalloc = ["jemallocator-global", "pyembed/jemalloc"] build-mode-pyoxidizer-exe = ["pyembed/build-mode-pyoxidizer-exe"] build-mode-prebuilt-artifacts = ["pyembed/build-mode-prebuilt-artifacts"] cpython-link-unresolved-static = ["pyembed/cpython-link-unresolved-static"] cpython-link-default = ["pyembed/cpython-link-default"]