Cargo.toml
28 lines
| 819 B
| application/toml
|
TOMLLexer
Gregory Szorc
|
r45128 | [package] | ||
name = "hgcli" | ||||
version = "0.1.0" | ||||
build = "build.rs" | ||||
authors = ["Gregory Szorc <gregory.szorc@gmail.com>"] | ||||
edition = "2018" | ||||
Gregory Szorc
|
r45129 | license = "GPL-2.0" | ||
readme = "README.md" | ||||
Gregory Szorc
|
r45128 | |||
Gregory Szorc
|
r45129 | [[bin]] | ||
name = "hg" | ||||
path = "src/main.rs" | ||||
Gregory Szorc
|
r45128 | |||
[dependencies] | ||||
jemallocator-global = { version = "0.3", optional = true } | ||||
Gregory Szorc
|
r46277 | |||
[dependencies.pyembed] | ||||
git = "https://github.com/indygreg/PyOxidizer.git" | ||||
rev = "4697fb25918dfad6dc73288daeea501063963a08" | ||||
default-features = false | ||||
Gregory Szorc
|
r45128 | |||
[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"] | ||||